.faq {
    margin-bottom: 20px;
}

.faq-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 15px;
    line-height: 1.6;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.faq-question .icon {
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question .icon.open {
    transform: rotate(180deg);
}

.contact-container {
    display: block;
}
