.page-faq__hero-section {
    padding-top: 10px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, #e0ffe0, #ffffff);
}

.page-faq__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 16px;
    gap: 40px;
}

.page-faq__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: #333333;
}

.page-faq__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #017439;
}

.page-faq__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #555555;
}

.page-faq__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-faq__btn-primary {
    background-color: #017439;
    color: #ffffff;
    border: 2px solid #017439;
}

.page-faq__btn-primary:hover {
    background-color: #005f2f;
    border-color: #005f2f;
}

.page-faq__btn-secondary {
    background-color: #ffffff;
    color: #017439;
    border: 2px solid #017439;
}

.page-faq__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005f2f;
    border-color: #005f2f;
}

.page-faq__hero-image {
    flex: 1 1 45%;
    text-align: center;
    min-width: 300px;
}

.page-faq__hero-side-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-faq__intro-section,
.page-faq__support-cta {
    padding: 60px 0;
    text-align: center;
}

.page-faq__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-faq__dark-bg {
    background-color: #017439;
    color: #ffffff;
}

.page-faq__container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
}

.page-faq__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #017439;
}

.page-faq__section-title--white {
    color: #ffffff;
}

.page-faq__section-description {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-faq__dark-bg .page-faq__section-description {
    color: #e0e0e0;
}

.page-faq__content-area {
    padding: 60px 0;
}

.page-faq__faq-list {
    margin-top: 30px;
}

.page-faq__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    color: #333333;
}

.page-faq__dark-bg .page-faq__faq-item {
    background-color: rgba(255, 255, 255, 0.95);
}

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #017439;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.page-faq__faq-question::-webkit-details-marker {
    display: none;
}

.page-faq__faq-qtext {
    flex-grow: 1;
    line-height: 1.5;
}

.page-faq__faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: #017439;
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
    transform: rotate(45deg);
}

.page-faq__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    padding-top: 10px;
}

.page-faq__faq-answer p {
    margin-bottom: 15px;
}

.page-faq__faq-answer .page-faq__btn-secondary {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 1px solid #017439;
    background-color: #f0fdf0;
    color: #017439;
}

.page-faq__faq-answer .page-faq__btn-secondary:hover {
    background-color: #e0ffe0;
    color: #005f2f;
    border-color: #005f2f;
}

.page-faq__support-content {
    max-width: 800px;
}

.page-faq__support-cta .page-faq__cta-buttons {
    justify-content: center;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-faq__hero-container {
        gap: 30px;
        padding: 30px 16px;
    }

    .page-faq__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-faq__hero-description {
        font-size: 1rem;
    }

    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .page-faq__section-title {
        font-size: clamp(1.6rem, 3.8vw, 2.2rem);
    }

    .page-faq__section-description {
        font-size: 0.95rem;
    }

    .page-faq__faq-question {
        padding: 18px 20px;
        font-size: 1.05rem;
    }

    .page-faq__faq-answer {
        padding: 0 20px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-faq__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-faq__hero-container {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 25px;
    }

    .page-faq__hero-content,
    .page-faq__hero-image {
        flex: 1 1 100%;
        min-width: unset;
    }

    .page-faq__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 12px;
    }

    .page-faq__hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-faq__hero-side-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-faq__intro-section,
    .page-faq__support-cta {
        padding: 40px 0;
    }

    .page-faq__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-faq__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 15px;
    }

    .page-faq__section-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .page-faq__content-area {
        padding: 40px 0;
    }

    .page-faq__faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .page-faq__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-faq__faq-toggle {
        font-size: 1.5rem;
    }

    .page-faq__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }

    .page-faq__faq-answer .page-faq__btn-secondary {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    /* General image responsiveness for content areas */
    .page-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-faq__support-cta .page-faq__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-faq__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-faq__section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }
    .page-faq__faq-question {
        font-size: 0.95rem;
    }
    .page-faq__faq-answer {
        font-size: 0.85rem;
    }
}