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

.page-faq__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    overflow: hidden; /* To contain the image if it's larger than viewport */
    padding-top: 10px; /* Small top padding */
    box-sizing: border-box;
}

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

.page-faq__hero-content {
    text-align: center;
    padding: 0 20px 40px;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
    z-index: 1; /* Ensure content is above any potential background layers */
}

.page-faq__main-title {
    font-size: clamp(2em, 5vw, 3.5em);
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-faq__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #ffffff;
    border: none;
}

.page-faq__btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.page-faq__btn-secondary {
    background: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    border: 2px solid #2E7A4E; /* Border */
}

.page-faq__btn-secondary:hover {
    background: #2E7A4E; /* Border color */
    transform: translateY(-2px);
}

.page-faq__content-area {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-faq__section-title {
    font-size: 2.2em;
    color: #F2FFF6; /* Text Main */
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-faq__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #11A84E 0%, #22C768 100%); /* Main/Aux color */
    border-radius: 2px;
}

.page-faq__text-block {
    font-size: 1.05em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    text-align: justify;
}

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

.page-faq__faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #1E3A2A; /* Divider */
    padding-bottom: 15px;
}

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

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    list-style: none; /* For details/summary */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

.page-faq__faq-question::-webkit-details-marker {
    display: none;
}

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

.page-faq__faq-item[open] .page-faq__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to become cross */
}

.page-faq__faq-answer {
    padding: 10px 0 10px 20px;
    font-size: 1.0em;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.7;
    overflow: hidden; /* For smooth transition if using JS max-height */
}

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

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

.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__content-image {
    width: 100%;
    max-width: 800px; /* Constrain image width */
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-height: 200px; /* Enforce minimum size */
}

/* Call to Action Section */
.page-faq__call-to-action {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.page-faq__call-to-action .page-faq__section-title {
    margin-top: 0;
    font-size: 2em;
}

.page-faq__call-to-action .page-faq__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-faq__hero-image {
        max-height: 400px;
    }
    .page-faq__main-title {
        font-size: clamp(1.8em, 6vw, 3em);
    }
    .page-faq__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-faq {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-faq__hero-image {
        max-height: 300px;
    }
    .page-faq__main-title {
        font-size: clamp(1.5em, 7vw, 2.5em);
    }
    .page-faq__hero-description {
        font-size: 1em;
    }
    .page-faq__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        width: 90%; /* Buttons take full width on mobile */
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-faq__content-area {
        padding: 15px;
    }
    .page-faq__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-faq__text-block {
        font-size: 0.95em;
    }
    .page-faq__faq-question {
        font-size: 1.1em;
        padding: 10px 0;
    }
    .page-faq__faq-answer {
        padding: 5px 0 5px 15px;
        font-size: 0.9em;
    }
    .page-faq__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 30px auto;
        min-height: 200px; /* Enforce minimum size */
    }
    .page-faq__faq-list,
    .page-faq__call-to-action {
        padding: 15px;
    }
    .page-faq__call-to-action .page-faq__section-title {
        font-size: 1.6em;
    }
    .page-faq__call-to-action .page-faq__text-block {
        font-size: 0.9em;
    }
}

/* Ensure all images in content area are >= 200px */
.page-faq img {
    min-width: 200px;
    min-height: 200px;
}
/* Overwrite for specific elements if needed, but ensure min-size */
.page-faq__hero-image {
    min-width: unset;
    min-height: unset;
}