:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color-page: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-faq {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background-color-page);
    padding-bottom: 60px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.page-faq__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.page-faq__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-faq__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px;
}

.page-faq__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--card-bg);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    margin-top: -50px;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.page-faq__main-title {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.page-faq__subtitle {
    font-size: clamp(16px, 2.2vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.page-faq__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 19px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-faq__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    filter: brightness(1.1);
}

/* General Section Styling */
.page-faq__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-faq__introduction-section,
.page-faq__faq-list-section,
.page-faq__conclusion-section {
    padding: 80px 0;
    background-color: var(--background-color-page);
}

.page-faq__section-title {
    font-size: clamp(26px, 3.8vw, 42px);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    line-height: 1.3;
}

.page-faq__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
    border-radius: 3px;
}

.page-faq__text-block {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: justify;
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 300;
}

.page-faq__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    min-width: 200px;
    min-height: 200px;
}

/* FAQ Accordion Styling */
.page-faq__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.page-faq__faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.page-faq__faq-details {
    padding: 0;
    margin: 0;
}

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--card-bg);
    transition: background-color 0.3s ease, color 0.3s ease;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    border-bottom: 1px solid var(--divider-color);
}

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

.page-faq__faq-details[open] .page-faq__faq-question {
    background-color: var(--deep-green-color);
    color: var(--gold-color);
    border-bottom: none;
}

.page-faq__faq-question:hover {
    background-color: var(--deep-green-color);
    color: var(--gold-color);
}

.page-faq__faq-qtext {
    flex-grow: 1;
    margin-right: 20px;
}

.page-faq__faq-toggle {
    font-size: 28px;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.page-faq__faq-details[open] .page-faq__faq-toggle {
    transform: rotate(45deg);
    color: var(--gold-color);
}

.page-faq__faq-answer {
    padding: 0 30px 25px;
    font-size: 17px;
    color: var(--text-secondary);
    text-align: justify;
    padding-top: 15px;
    line-height: 1.7;
}

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

.page-faq__faq-answer ul {
    margin: 15px 0 15px 20px;
    padding: 0;
    list-style-type: disc;
}

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

.page-faq__text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.page-faq__text-link:hover {
    color: var(--gold-color);
    text-decoration: underline;
}

/* Conclusion Section CTA Buttons */
.page-faq__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-faq__cta-button--primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-faq__cta-button--secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-faq__cta-button--secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-faq__hero-content {
        margin-top: -40px;
    }
    .page-faq__hero-image {
        min-height: 250px;
    }
    .page-faq__introduction-section,
    .page-faq__faq-list-section,
    .page-faq__conclusion-section {
        padding: 60px 0;
    }
}

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

    .page-faq__hero-content {
        padding: 30px 15px;
        margin-top: -20px;
        border-radius: 0;
    }

    .page-faq__main-title {
        font-size: clamp(24px, 7vw, 36px);
        margin-bottom: 15px;
    }

    .page-faq__subtitle {
        font-size: clamp(15px, 3.5vw, 18px);
        margin-bottom: 25px;
    }

    .page-faq__cta-button {
        padding: 14px 25px;
        font-size: 17px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-faq__container {
        padding: 15px;
    }

    .page-faq__introduction-section,
    .page-faq__faq-list-section,
    .page-faq__conclusion-section {
        padding: 40px 0;
    }

    .page-faq__section-title {
        font-size: clamp(20px, 6.5vw, 30px);
        margin-bottom: 30px;
    }

    .page-faq__section-title::after {
        width: 60px;
        height: 3px;
        margin: 15px auto 0;
    }

    .page-faq__text-block {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .page-faq__content-image,
    .page-faq__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
        border-radius: 8px;
    }

    .page-faq__faq-item {
        margin-bottom: 12px;
        border-radius: 8px;
    }

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

    .page-faq__faq-qtext {
        margin-right: 10px;
    }

    .page-faq__faq-toggle {
        font-size: 24px;
    }

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

    .page-faq__faq-answer ul {
        margin: 10px 0 10px 15px;
    }

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

    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .page-faq__hero-content {
        padding: 25px 10px;
        margin-top: -10px;
    }

    .page-faq__main-title {
        font-size: clamp(22px, 8vw, 32px);
    }

    .page-faq__subtitle {
        font-size: clamp(14px, 4vw, 16px);
    }

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

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