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

/* Hero Section */
.page-faq__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    text-align: center;
    background-color: #11271B; /* Card BG */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-faq__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 30px; /* Space between text and image if image is below */
}

.page-faq__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive H1 font size */
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
}

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

.page-faq__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-faq__btn-secondary {
    background: transparent;
    color: #F2FFF6; /* Text Main for secondary */
    border: 2px solid #2E7A4E; /* Border */
}

.page-faq__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.page-faq__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    display: block; /* Ensure image behaves as block for layout */
}

/* Accordion Section */
.page-faq__accordion-section {
    padding: 80px 20px;
    background-color: #08160F; /* Background */
}

.page-faq__dark-section {
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
}

.page-faq__light-bg {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
}

.page-faq__container {
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-faq__section-title {
    font-size: 2.5rem;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.page-faq__category-title {
    font-size: 1.8rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1E3A2A; /* Divider */
    text-align: left;
}

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

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    user-select: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid transparent; /* No border by default */
}

.page-faq__faq-item[open] .page-faq__faq-question {
    border-bottom: 1px solid #1E3A2A; /* Divider */
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter when open */
}

.page-faq__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

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

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

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

.page-faq__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: left;
    max-height: 0; /* Hidden by default for JS fallback, but <details> handles this natively */
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq__faq-item[open] .page-faq__faq-answer {
    max-height: 2000px; /* Arbitrary large value for smooth transition */
    padding-top: 15px;
}

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

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

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

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

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

.page-faq__image-content {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    object-fit: cover;
}

/* CTA Bottom Section */
.page-faq__cta-bottom {
    padding: 80px 20px;
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
}

.page-faq__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-faq__cta-title {
    font-size: 2.2rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-faq__hero-content {
        max-width: 700px;
    }
    .page-faq__container {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .page-faq__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-faq__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-faq__intro-text {
        font-size: 1rem;
    }
    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-faq__accordion-section {
        padding: 50px 15px;
    }
    .page-faq__section-title {
        font-size: 2rem;
    }
    .page-faq__section-description {
        font-size: 0.95rem;
    }
    .page-faq__category-title {
        font-size: 1.5rem;
    }
    .page-faq__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-faq__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }
    .page-faq__cta-bottom {
        padding: 50px 15px;
    }
    .page-faq__cta-title {
        font-size: 1.8rem;
    }
    .page-faq__cta-description {
        font-size: 1rem;
    }

    /* Mobile image responsive rules */
    .page-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .page-faq__section,
    .page-faq__card,
    .page-faq__container,
    .page-faq__hero-section,
    .page-faq__accordion-section,
    .page-faq__cta-bottom,
    .page-faq__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }
    .page-faq__cta-buttons {
        padding-left: 0;
        padding-right: 0;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .page-faq__video-section {
        padding-top: 10px !important;
    }
}

/* No CSS filter on images */
.page-faq img {
    filter: none;
}