.page-faq {
    color: var(--text-main, #F2FFF6);
    background-color: var(--background, #08160F);
    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: 40px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    background-color: var(--card-bg, #11271B);
    overflow: hidden;
}

.page-faq__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin-bottom: 30px;
    border-radius: 8px;
    object-fit: cover;
}

.page-faq__hero-content {
    max-width: 800px;
    margin: 0 auto 40px auto;
    z-index: 1;
}

.page-faq__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-main, #F2FFF6);
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-faq__hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
}

.page-faq__content-section {
    padding: 60px 20px;
    background-color: var(--background, #08160F);
}

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

.page-faq__section-title {
    font-size: 2.5rem;
    color: var(--text-main, #F2FFF6);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-faq__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary, #A7D9B8);
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__section-banner {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 50px auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-faq__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-faq__faq-item {
    background-color: var(--card-bg, #11271B);
    border: 1px solid var(--border, #2E7A4E);
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-main, #F2FFF6);
}

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    background-color: #11271B;
    color: var(--text-main, #F2FFF6);
    transition: background-color 0.3s ease;
}

.page-faq__faq-question:hover {
    background-color: #1A3025;
}

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

.page-faq__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow, #57E38D);
    font-weight: normal;
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
    content: "−";
}

.page-faq__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary, #A7D9B8);
    line-height: 1.7;
}

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

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

.page-faq__faq-answer a {
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
    text-decoration: none;
}

.page-faq__cta-section {
    background-color: var(--deep-green, #0A4B2C);
    padding: 80px 20px;
    text-align: center;
}

.page-faq__cta-title {
    font-size: 2.2rem;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-faq__cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-faq__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq__btn-secondary {
    background-color: transparent;
    color: var(--glow, #57E38D);
    border: 2px solid var(--glow, #57E38D);
}

.page-faq__btn-secondary:hover {
    background-color: var(--glow, #57E38D);
    color: var(--deep-green, #0A4B2C);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .page-faq__hero-section {
        padding: 30px 15px;
    }

    .page-faq__hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .page-faq__hero-description {
        font-size: 1rem;
    }

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

    .page-faq__section-title {
        font-size: 2rem;
    }

    .page-faq__section-description {
        font-size: 0.95rem;
    }

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

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

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

    .page-faq__cta-title {
        font-size: 1.8rem;
    }

    .page-faq__cta-description {
        font-size: 0.95rem;
    }

    .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-left: 15px;
        padding-right: 15px;
    }

    .page-faq img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-faq__section,
    .page-faq__card,
    .page-faq__container,
    .page-faq__hero-section,
    .page-faq__content-section,
    .page-faq__cta-section {
      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;
    }
}