.page-faq {
    color: #F2FFF6; /* Text Main for general content on dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-faq__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px; /* Padding below content */
    background-color: #08160F; /* Ensure consistency with body background */
}

.page-faq__hero-image {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and content */
}

.page-faq__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    color: #F2FFF6;
}

.page-faq__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: bold;
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-faq__intro-text {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Crucial for button responsiveness */
    max-width: 100%; /* Ensure button doesn't overflow */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-faq__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main for button text */
    border: 2px solid transparent;
}

.page-faq__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-faq__btn-secondary {
    background: transparent;
    color: #2AD16F; /* A lighter green for secondary button text */
    border: 2px solid #2AD16F;
}

.page-faq__btn-secondary:hover {
    background: #2AD16F;
    color: #F2FFF6;
}

.page-faq__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #08160F; /* Match body background */
}

.page-faq__section-title {
    font-size: 2.2rem;
    color: #F2C14E; /* Gold for section titles */
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
    font-weight: bold;
}

.page-faq__faq-list {
    margin-bottom: 40px;
}

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

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    background-color: #1E3A2A; /* A slightly darker green for question background */
    transition: background-color 0.3s ease;
}

.page-faq__faq-question:hover {
    background-color: #0A4B2C; /* Deep Green for hover */
}

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

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

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

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

.page-faq__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary for answers */
    border-top: 1px solid #2E7A4E; /* Divider */
}

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

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

.page-faq__faq-answer ul,
.page-faq__faq-answer ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-faq__faq-answer li {
    margin-bottom: 8px;
}

.page-faq__faq-answer a {
    color: #57E38D; /* Glow color for links in answers */
    text-decoration: underline;
}

.page-faq__faq-answer a:hover {
    color: #2AD16F; /* Lighter green on hover */
}

.page-faq__image-inline {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__final-cta {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    margin-top: 50px;
    color: #F2FFF6;
    border: 1px solid #2E7A4E;
}

.page-faq__final-cta-title {
    font-size: 2rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

.page-faq__final-cta-text {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-faq__final-cta-text a {
    color: #57E38D;
    text-decoration: underline;
}

.page-faq__btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-faq__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-faq__section-title {
        font-size: 2rem;
    }
    .page-faq__final-cta-title {
        font-size: 1.8rem;
    }
}

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

    .page-faq__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles header offset */
        padding-bottom: 30px;
    }

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

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

    .page-faq__intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-faq__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 100%; /* Ensure container takes full width */
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    
    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        width: 100% !important; /* Full width buttons */
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-faq__content-area {
        padding: 30px 15px;
    }

    .page-faq__section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

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

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

    .page-faq__image-inline {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 15px auto;
    }

    .page-faq__faq-list,
    .page-faq__final-cta {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent overflow */
    }

    .page-faq__final-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .page-faq__final-cta-title {
        font-size: 1.5rem;
    }

    .page-faq__final-cta-text {
        font-size: 1rem;
    }
}

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