/* FAQ Section - Fully Responsive */
.faq-section {
    width: 100%;
    max-width: 100%;
    background-color: var(--white);
    padding: clamp(3rem, 6vw, 6.25rem) 0;
    box-sizing: border-box;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(1.5rem, 3vw, 3.75rem);
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.faq-content {
    padding: clamp(0.75rem, 1.5vw, 1.25rem);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.faq-heading {
    font-size: clamp(1.5rem, 4.5vw, 3rem);
    color: var(--text-dark);
    margin-bottom: clamp(0.5rem, 1vw, 0.625rem);
    font-weight: 400;
    width: 100%;
    max-width: 100%;
}

.faq-subheading {
    font-size: clamp(1.5rem, 4.5vw, 3rem);
    font-weight: bold;
    margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
    width: 100%;
    max-width: 100%;
}

.faq-intro {
    font-size: clamp(0.875rem, 1.8vw, 1.1rem);
    color: var(--text-dark);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
}

.faq-list {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: clamp(0.75rem, 1.5vw, 1.25rem) 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: var(--text-dark);
}

.faq-icon {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--primary-color);
    font-weight: bold;
}

/* FAQ Answer Display States */
.faq-answer {
    display: none;
    margin-top: 0.9375rem;
    padding-top: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.faq-answer.active {
    display: block;
}

.faq-answer a {
    color: #0066cc;
    text-decoration: underline;
}

/* FAQ About Section - Fully Responsive */
.faq-about-section {
    width: 100%;
    max-width: 100%;
    padding: clamp(3rem, 6vw, 6.25rem) 0;
    background-color: var(--white);
    box-sizing: border-box;
}

.faq-about-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(1rem, 2vw, 1.25rem);
    box-sizing: border-box;
}

.faq-about-wrapper {
    display: block;
    width: calc(100% - clamp(10rem, 20vw, 19.375rem));
    max-width: calc(100% - clamp(10rem, 20vw, 19.375rem));
    margin-left: clamp(2rem, 4vw, 3.75rem);
    margin-right: clamp(8rem, 16vw, 15.625rem);
    box-sizing: border-box;
}

.faq-about-content {
    padding: 1.25rem 0;
    width: 100%;
    max-width: 100%;
}

.faq-about-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    font-weight: 400;
}

.faq-about-subheading {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 2.5rem;
}

.faq-decorative-image {
    width: 100%;
    max-width: 25rem;
    height: auto;
    opacity: 0.3;
    transform: rotate(-15deg);
    margin-top: 6.25rem;
}

/* Responsive FAQ */
@media (max-width: 64rem) {
    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-about-wrapper {
        grid-template-columns: 1fr;
        width: calc(100% - clamp(10rem, 20vw, 13.75rem));
        max-width: calc(100% - clamp(10rem, 20vw, 13.75rem));
        margin-left: clamp(1.5rem, 3vw, 2.5rem);
        margin-right: clamp(8rem, 16vw, 11.25rem);
    }

    .faq-about-section .faq-decorative-image {
        display: none;
    }
}

@media (max-width: 48rem) {
    .faq-about-wrapper {
        width: calc(100% - clamp(4rem, 8vw, 7.5rem));
        max-width: calc(100% - clamp(3.5rem, 7vw, 6.25rem));
        margin-left: clamp(0.75rem, 1.5vw, 1.25rem);
        margin-right: clamp(3.5rem, 7vw, 6.25rem);
    }
    
    .faq-wrapper {
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    
    .faq-heading,
    .faq-subheading {
        font-size: clamp(1.25rem, 3vw, 2rem);
    }
    
    .faq-intro {
        font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    }
}

@media (max-width: 30rem) {
    .faq-about-wrapper {
        width: calc(100% - clamp(2rem, 4vw, 4rem));
        max-width: calc(100% - clamp(2rem, 4vw, 4rem));
        margin-left: clamp(0.5rem, 1vw, 1rem);
        margin-right: clamp(1.5rem, 3vw, 3rem);
    }
    
    .faq-section {
        padding: clamp(2rem, 4vw, 3rem) 0;
    }
    
    .faq-heading,
    .faq-subheading {
        font-size: clamp(1.125rem, 2.5vw, 1.75rem);
    }
}

/* Very Large Screens */
@media (min-width: 120rem) {
    .faq-wrapper {
        gap: clamp(3.75rem, 5vw, 5rem);
    }
    
    .faq-about-wrapper {
        max-width: 75rem;
    }
}

