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

.page-faq__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    overflow: hidden;
}

.page-faq__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-faq__hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-faq__hero-content-wrapper {
    max-width: 900px;
    text-align: center;
    padding: 40px 20px;
    z-index: 1;
    color: #F2FFF6;
}

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

.page-faq__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-faq__hero-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-faq__hero-cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__dark-section {
    background-color: #08160F; /* Background */
    color: #F2FFF6;
    padding: 60px 0;
}

.page-faq__light-bg {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6;
    padding: 60px 0;
}

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

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

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

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

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6;
    transition: background-color 0.3s ease;
}

.page-faq__faq-question:hover {
    background-color: #13994A;
}

.page-faq__faq-item[open] > .page-faq__faq-question {
    background-color: #11A84E; /* Main color when open */
}

.page-faq__faq-qtext {
    flex-grow: 1;
    color: #F2FFF6;
}

.page-faq__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: #F2C14E; /* Gold */
}

.page-faq__faq-item[open] > .page-faq__faq-question .page-faq__faq-toggle {
    content: '−';
}

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

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

.page-faq__faq-answer ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-faq__faq-answer ol {
    list-style: decimal inside;
    margin-left: 20px;
    margin-bottom: 15px;
}

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

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

.page-faq__cta-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #F2FFF6;
}

.page-faq__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-faq__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__related-articles {
    padding: 60px 0;
}

.page-faq__article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-faq__article-card {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border */
}

.page-faq__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-faq__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-faq__article-card h3 {
    padding: 20px 20px 10px 20px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.page-faq__article-card h3 a {
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-faq__article-card h3 a:hover {
    color: #F2C14E; /* Gold */
}

.page-faq__article-excerpt {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
}

.page-faq__read-more {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 20px 20px 20px;
    background-color: #11A84E; /* Main color */
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.page-faq__read-more:hover {
    background-color: #22C768; /* Auxiliary color */
}

.page-faq__view-all-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-faq__view-all-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-faq__view-all-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-faq__hero-content-wrapper {
        padding: 30px 20px;
    }

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

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

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

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

    .page-faq__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }

    .page-faq__article-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-faq__hero-section,
    .page-faq__faq-section,
    .page-faq__related-articles {
        padding: 40px 0;
    }

    .page-faq__container {
        padding: 0 15px;
    }

    .page-faq__hero-image-wrapper {
        max-height: 300px;
    }

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

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

    .page-faq__hero-cta-button,
    .page-faq__cta-button,
    .page-faq__view-all-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-faq__cta-wrapper {
        padding: 30px 15px;
    }

    .page-faq__article-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .page-faq__hero-content-wrapper,
    .page-faq__cta-wrapper,
    .page-faq__article-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-faq__article-image {
        height: 180px;
    }

    .page-faq__read-more {
        width: calc(100% - 40px);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-faq__main-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }

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

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

    .page-faq__faq-question {
        font-size: 0.95rem;
        padding: 12px 15px;
    }

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

    .page-faq__hero-cta-button,
    .page-faq__cta-button,
    .page-faq__view-all-button {
        font-size: 1rem;
        padding: 12px 20px;
    }

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

    .page-faq__article-card h3 {
        font-size: 1.1rem;
    }
}