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

.page-faq__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Minimal top padding as body handles --header-offset */
    text-align: center;
    overflow: hidden;
}

.page-faq__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 30px;
}

.page-faq__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-faq__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

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

.page-faq__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-faq__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2; /* Slightly dimmed to make text stand out */
}

.page-faq__faq-list-section {
    padding: 80px 20px;
    background-color: #08160F; /* Background color from palette */
    color: #F2FFF6; /* Main text color */
}

.page-faq__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-faq__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-faq__section-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-faq__faq-group {
    margin-bottom: 40px;
    background-color: #11271B; /* Card BG from palette */
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #2E7A4E; /* Border color from palette */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__faq-group-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    display: block;
}

.page-faq__faq-group-title {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    color: #57E38D; /* Glow color for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.page-faq__faq-item {
    background-color: #11271B; /* Card BG */
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #2E7A4E; /* Border color */
    overflow: hidden;
    color: #F2FFF6; /* Text Main */
}

.page-faq__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    list-style: none; /* Remove default marker */
    position: relative;
}

.page-faq__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for Webkit browsers */
}

.page-faq__faq-item[open] summary {
    background-color: #0A4B2C; /* Deep Green for open summary */
}

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

.page-faq__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #57E38D; /* Glow color */
    transition: transform 0.3s ease;
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or similar effect */
}

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

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

.page-faq__faq-answer a {
    color: #57E38D; /* Glow color for links */
    text-decoration: none;
    font-weight: 600;
}

.page-faq__faq-answer a:hover {
    text-decoration: underline;
}

.page-faq__cta-section-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 12px;
    border: 1px solid #2E7A4E;
}

.page-faq__cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #F2C14E; /* Gold color */
    margin-bottom: 20px;
    font-weight: 700;
}

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

.page-faq__cta-button--bottom {
    padding: 18px 35px;
    font-size: 1.2rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-faq__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }

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

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

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

    .page-faq__faq-answer {
        padding: 0 20px 18px 20px;
    }
}

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

    .page-faq__hero-section {
        padding: 30px 15px;
        padding-top: 10px !important;
    }
    
    .page-faq__hero-content {
        margin-bottom: 20px;
    }

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

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

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

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

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

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

    .page-faq__faq-group {
        padding: 15px;
        margin-bottom: 30px;
    }

    .page-faq__faq-group-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-bottom: 20px;
    }

    .page-faq__faq-group-title {
        font-size: clamp(1.5rem, 4.5vw, 1.8rem);
        margin-bottom: 20px;
    }

    .page-faq__faq-item summary {
        padding: 15px 18px;
        font-size: 1rem;
    }

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

    .page-faq__cta-section-bottom {
        margin-top: 40px;
        padding: 30px 15px;
    }

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

    .page-faq__cta-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-faq__cta-button--bottom {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    /* Mobile image, video, button responsive adaptations */
    .page-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !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;
    }

    .page-faq__cta-buttons,
    .page-faq__button-group,
    .page-faq__btn-container,
    .page-faq__faq-list-section .page-faq__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-faq__hero-section .page-faq__hero-content {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Ensure no filter on images */
.page-faq img {
    filter: none;
}