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

.page-faq h1,
.page-faq h2,
.page-faq h3,
.page-faq h4,
.page-faq h5,
.page-faq h6 {
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    line-height: 1.2;
}

.page-faq a {
    color: #57E38D; /* Glow - suitable for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-faq a:hover {
    color: #F2C14E; /* Gold - for hover */
}

/* Section styling */
.page-faq__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-faq__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
}

.page-faq__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.page-faq__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* No filter */
}

.page-faq__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin-top: 20px; /* Space between image and text */
}

.page-faq__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    margin-bottom: 20px;
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
}

.page-faq__intro-text {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box; /* Crucial for max-width on mobile */
    white-space: normal;
    word-wrap: break-word;
}

.page-faq__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4); /* Glow */
}

.page-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* FAQ Section */
.page-faq__faq-section {
    background-color: #0A4B2C; /* Deep Green */
    padding: 80px 20px;
}

.page-faq__section-title {
    text-align: center;
    font-size: clamp(1.8em, 3vw, 2.8em);
    margin-bottom: 60px;
    color: #F2FFF6; /* Text Main */
    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: #57E38D; /* Glow */
    border-radius: 2px;
}

.page-faq__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-faq__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-faq__faq-item details {
    list-style: none;
}

.page-faq__faq-item details > summary {
    list-style: none;
}

.page-faq__faq-item details > summary::-webkit-details-marker {
    display: none;
}

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
}

.page-faq__faq-question:hover {
    background-color: #1E3A2A; /* Divider - slightly darker for hover */
}

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

.page-faq__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D; /* Glow */
}

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

/* Video section */
.page-faq__video-section {
    background-color: #08160F; /* Background */
    padding: 80px 20px;
    text-align: center;
}

.page-faq__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Max width for video */
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-faq__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

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

    .page-faq__section {
        padding: 40px 15px;
    }

    .page-faq__hero-section {
        padding-bottom: 40px;
    }

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

    .page-faq__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-faq__intro-text {
        font-size: 0.95em;
        margin-bottom: 25px;
    }

    .page-faq__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    .page-faq__faq-section {
        padding: 50px 15px;
    }

    .page-faq__section-title {
        font-size: clamp(1.5em, 7vw, 2.2em);
        margin-bottom: 40px;
    }

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

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

    .page-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

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

    .page-faq__hero-section {
        padding-top: 10px !important;
    }

    .page-faq video,
    .page-faq__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-faq__video-section,
    .page-faq__video-container,
    .page-faq__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}