/* FAQ Section Styles */
.faq-section {
    background-color: #1a4d5c;
    /* Dark slate-teal color matching the screenshot */
    padding: 80px 0;
    color: #ffffff;
}

.faq-section .section-label {
    display: block;
    font-family: "AvenirHeavy", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f7ad19;
    /* Gold highlight color */
    text-transform: uppercase;
    margin-bottom: 12px;
    text-align: center;
}

.faq-section .faq-header h2 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 40px;
}

.faq-section .section-subtitle {
    font-family: "AvenirLTStdBook", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.faq-accordion-container {
    max-width: 850px;
    margin-top: 50px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 6px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    text-align: left;
    font-family: "AvenirHeavy", sans-serif;
    font-size: 16px;
    color: #00436e;
    /* Brand deep blue */
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #fcfdfd;
}

.faq-icon {
    color: #00436e;
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 30px 24px 30px;
}

.faq-answer-content p {
    font-family: "AvenirLTStdBook", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #525c68;
    margin: 0;
}

/* Responsiveness for FAQ section */
@media (max-width: 1199px) {
    .faq-section .faq-header h2 {
        font-size: 34px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-section .section-subtitle {
        font-size: 15px;
    }

    .faq-accordion-container {
        margin-top: 35px;
    }

    .faq-question {
        padding: 20px 24px;
    }
}

@media (max-width: 991px) {
    .faq-section .faq-header h2 {
        font-size: 30px;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-section .section-subtitle {
        font-size: 14px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .faq-section .faq-header h2 {
        font-size: 26px;
    }

    .faq-section .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 14px;
    }

    .faq-answer-content {
        padding: 0 18px 18px 18px;
    }

    .faq-answer-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-section .faq-header h2 {
        font-size: 22px;
    }

    .faq-question {
        padding: 14px 15px;
    }

    .faq-answer-content {
        padding: 0 15px 15px 15px;
    }
}