/* Aqua Therapy FAQ Section Styles */
.faq-section {
    padding: 6rem 2rem 12rem;
    background: linear-gradient(135deg, rgba(252, 195, 0, 0.02) 0%, rgba(0, 146, 68, 0.02) 50%, rgba(235, 28, 36, 0.02) 100%);
    color: var(--text-dark);
}

.faq-section-title {
    text-align: center;
    margin-bottom: 60px !important;
    padding-bottom: 15px;
    width: 100%;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--yellow-primary);
    border-radius: 2px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-soft);
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    border-left: 5px solid var(--yellow-primary);
    /* Aqua border-left */
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.3em;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--yellow-lighter);
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: var(--yellow-primary);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.faq-question[aria-expanded="true"]+.faq-answer {
    max-height: 500px;
    /* Adjust as needed for maximum content */
    padding-bottom: 20px;
    padding-top: 10px;
    /* Adjust padding when open */
}

.faq-answer p {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.faq-answer p img {
    width: 11px !important;
}

.faq-section.home-faq-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-peach) 100%);
}

/* Premium and Calming design adjustments */

.faq-item {
    border-radius: 12px;
}

.cardio-faq,
.electrotherapy-faq {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-peach) 100%);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 2rem;
    }

    .faq-section-title {
        margin-bottom: 50px !important;
    }

    .faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
        gap: 15px;
    }

    .faq-answer p {
        font-size: 1em;
    }

    .faq-section.home-faq-section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 3rem 1.5rem;
    }

    .faq-section.home-faq-section {
        padding: 3rem 1.5rem;
    }

    .faq-question {
        font-size: 1em;
        padding: 18px 15px;
    }
}