.page-faq {
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-faq__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    overflow: hidden; /* Ensure content doesn't overflow */
    background-color: #08160F; /* Background */
}

.page-faq__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-faq__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.page-faq__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.page-faq__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* Use clamp for H1 */
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-faq__subtitle {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure container takes full width for flex-wrap */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons adapt to container width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
    text-align: center;
}

.page-faq__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.3);
}

.page-faq__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.4);
}

.page-faq__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Deep Green */
    border: 2px solid #2E7A4E; /* Border */
}

.page-faq__btn-secondary:hover {
    background-color: rgba(42, 209, 111, 0.1);
    color: #57E38D; /* Glow */
    border-color: #57E38D; /* Glow */
}

/* FAQ List Section */
.page-faq__faq-list-section {
    padding: 80px 20px;
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
}

.page-faq__container {
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%; /* Ensure container takes full width for mobile responsiveness */
}

.page-faq__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-faq__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2AD16F; /* Main color from button gradient */
    border-radius: 2px;
}

.page-faq__faq-category {
    margin-bottom: 40px;
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    background-color: #11271B; /* Card BG */
    padding: 30px;
}

.page-faq__category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin-bottom: 30px;
    text-align: center;
}

.page-faq__faq-item {
    margin-bottom: 15px;
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 8px;
    overflow: hidden;
    transition: background-color 0.3s ease;
    border: 1px solid #1E3A2A; /* Divider */
}

.page-faq__faq-item:last-child {
    margin-bottom: 0;
}

.page-faq__faq-item[open] {
    background-color: #0A4B2C; /* Deep Green */
    border-color: #2E7A4E; /* Border */
}

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    list-style: none; /* For <summary> tag */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

.page-faq__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for <summary> */
}

.page-faq__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-faq__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 50%;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card BG */
    transition: transform 0.3s ease;
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
    transform: rotate(0deg); /* No actual rotation needed for +/- */
}

.page-faq__faq-answer {
    padding: 0 25px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.7;
}

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

.page-faq__faq-answer p:last-child {
    margin-bottom: 0;
}

.page-faq__image-inline {
    width: 100%;
    height: auto;
    display: block;
    max-width: 600px; /* Example max-width for inline images */
    margin: 20px auto;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #2E7A4E; /* Border */
}

.page-faq__btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 15px;
    display: inline-flex;
}

/* Call to Action Section */
.page-faq__cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
}

.page-faq__cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
}

.page-faq__cta-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-faq__main-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    .page-faq__section-title {
        font-size: 2.2rem;
    }
    .page-faq__category-title {
        font-size: 1.6rem;
    }
    .page-faq__faq-question {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-faq {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-faq__hero-section,
    .page-faq__faq-list-section,
    .page-faq__cta-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* Specific for hero/video sections */
    }

    .page-faq__hero-content {
        padding: 0 15px;
    }

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

    .page-faq__subtitle {
        font-size: 1rem;
    }

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

    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-faq__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-faq__category-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .page-faq__faq-category {
        padding: 20px;
    }

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

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

    .page-faq__image-inline {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-left: auto;
        margin-right: auto;
    }

    .page-faq__hero-image-wrapper,
    .page-faq__container,
    .page-faq__faq-item,
    .page-faq__cta-section .page-faq__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-faq__cta-title {
        font-size: 1.8rem;
    }

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

@media (max-width: 480px) {
    .page-faq__hero-section {
        padding: 30px 10px;
        padding-top: 10px !important;
    }
    .page-faq__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-faq__subtitle {
        font-size: 0.9rem;
    }
    .page-faq__faq-list-section,
    .page-faq__cta-section {
        padding: 30px 10px;
    }
    .page-faq__section-title {
        font-size: 1.8rem;
    }
    .page-faq__category-title {
        font-size: 1.3rem;
    }
    .page-faq__faq-question {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    .page-faq__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.85rem;
    }
}