/* Update: FAQ Section to match new design */
.faq-section {
    padding: 4rem 0;
    background-color: #2F7B7C;
    /* Teal matching the reference image */
    color: white;
}

.faq-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.9);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Accordion Icons */
.icon-plus,
.icon-minus {
    font-size: 1.5rem;
    font-weight: 400;
    margin-left: 1rem;
}

.icon-minus {
    display: none;
}

.faq-item.active .icon-plus {
    display: none;
}

.faq-item.active .icon-minus {
    display: block;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large height */
}

/* Footer Guarantee Updates */
.footer-guarantee {
    background: white;
    padding: 6rem 0;
    text-align: center;
}

.guarantee-badge-container {
    margin-bottom: 2rem;
}

.footer-guarantee h2 {
    color: #1A202C;
    /* Dark text on white */
    font-size: 2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-guarantee p {
    color: #4A5568;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.7;
}

.certifications-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}