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

.page-faq {
    background-color: var(--fcb8-bg-color);
    color: var(--fcb8-text-main); /* Light text for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

/* Hero Section */
.page-faq__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px;
    overflow: hidden;
    background-color: var(--fcb8-deep-green);
}

.page-faq__hero-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-faq__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-faq__main-title {
    font-size: 2.8em;
    font-weight: bold;
    color: var(--fcb8-gold-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__description {
    font-size: 1.1em;
    color: var(--fcb8-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;
}

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-faq__btn-primary {
    background: var(--fcb8-button-gradient);
    color: var(--fcb8-text-main);
    border: none;
}

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

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

.page-faq__btn-secondary:hover {
    background-color: var(--fcb8-primary-color);
    color: var(--fcb8-text-main);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-faq__intro-section,
.page-faq__faq-section,
.page-faq__additional-info-section,
.page-faq__contact-us-section {
    padding: 60px 20px;
    background-color: var(--fcb8-bg-color);
}

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

.page-faq__section-title {
    font-size: 2.2em;
    color: var(--fcb8-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-faq__text-block {
    margin-bottom: 20px;
    color: var(--fcb8-text-secondary);
    text-align: justify;
}

.page-faq__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

/* FAQ Specific Styles */
.page-faq__faq-list {
    margin-top: 30px;
}

.page-faq__faq-item {
    background-color: var(--fcb8-card-bg);
    border: 1px solid var(--fcb8-border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--fcb8-text-main);
}

.page-faq__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.15em;
    color: var(--fcb8-text-main);
    background-color: var(--fcb8-deep-green);
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
}

.page-faq__faq-item summary:hover {
    background-color: rgba(var(--fcb8-primary-color), 0.2);
}

.page-faq__faq-item[open] summary {
    border-bottom-color: var(--fcb8-border-color);
}

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

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

.page-faq__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--fcb8-glow-color);
    transition: transform 0.3s ease;
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
    transform: rotate(45deg);
}

.page-faq__faq-answer {
    padding: 20px 25px;
    color: var(--fcb8-text-secondary);
    font-size: 1em;
    line-height: 1.7;
}

.page-faq__faq-answer p {
    margin-bottom: 1em;
}

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

.page-faq__faq-answer li {
    margin-bottom: 0.5em;
}

.page-faq__text-link {
    color: var(--fcb8-secondary-color);
    text-decoration: none;
    font-weight: bold;
}

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

.page-faq__cta-banner {
    margin-top: 50px;
    border: 2px solid var(--fcb8-border-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-faq__main-title {
        font-size: 2.2em;
    }
    .page-faq__section-title {
        font-size: 1.8em;
    }
    .page-faq__hero-image {
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    .page-faq {
        font-size: 15px;
    }
    .page-faq__hero-section {
        padding: 10px 15px 40px;
    }
    .page-faq__main-title {
        font-size: 1.8em;
    }
    .page-faq__description {
        font-size: 1em;
    }
    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-faq__intro-section,
    .page-faq__faq-section,
    .page-faq__additional-info-section,
    .page-faq__contact-us-section {
        padding: 40px 15px;
    }
    .page-faq__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-faq__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-faq__faq-answer {
        padding: 15px 20px;
    }
    .page-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-faq__section,
    .page-faq__card,
    .page-faq__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-faq__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        flex-wrap: wrap !important;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-faq__main-title {
        font-size: 1.5em;
    }
    .page-faq__hero-image {
        max-height: 300px;
    }
}