:root {
    --ee66-primary-color: #11A84E;
    --ee66-secondary-color: #22C768;
    --ee66-background-color: #08160F; /* Background */
    --ee66-card-bg: #11271B; /* Card BG */
    --ee66-text-main: #F2FFF6; /* Text Main */
    --ee66-text-secondary: #A7D9B8; /* Text Secondary */
    --ee66-border-color: #2E7A4E; /* Border */
    --ee66-glow-color: #57E38D; /* Glow */
    --ee66-gold-color: #F2C14E; /* Gold */
    --ee66-divider-color: #1E3A2A; /* Divider */
    --ee66-deep-green: #0A4B2C; /* Deep Green */
    --ee66-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
}

.page-blog-ee66-promotions-faq {
    background-color: var(--ee66-background-color);
    color: var(--ee66-text-main); /* Ensure light text on dark background */
    font-family: 'Arial', sans-serif; /* Example font */
    line-height: 1.6;
    font-size: 16px;
}

.page-blog-ee66-promotions-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-ee66-promotions-faq__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px; /* Base padding */
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-ee66-promotions-faq__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-blog-ee66-promotions-faq__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

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

.page-blog-ee66-promotions-faq__main-title {
    font-size: clamp(2em, 4vw, 2.5em); /* H1 font size with clamp */
    font-weight: 700;
    color: var(--ee66-gold-color); /* Gold color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-blog-ee66-promotions-faq__description {
    font-size: 1.1em;
    color: var(--ee66-text-secondary);
    margin-bottom: 30px;
}

/* Section Title */
.page-blog-ee66-promotions-faq__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.2em);
    font-weight: 600;
    color: var(--ee66-text-main);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-ee66-promotions-faq__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--ee66-primary-color);
    border-radius: 2px;
}

/* FAQ Section */
.page-blog-ee66-promotions-faq__faq-section {
    padding: 60px 0;
    background-color: var(--ee66-background-color);
}

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

.page-blog-ee66-promotions-faq__faq-item {
    background-color: var(--ee66-card-bg);
    border: 1px solid var(--ee66-border-color);
    border-radius: 10px;
    overflow: hidden;
    color: var(--ee66-text-main); /* Light text on dark card background */
}

.page-blog-ee66-promotions-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    color: var(--ee66-text-main);
    background-color: var(--ee66-deep-green); /* Slightly different background for question */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-ee66-promotions-faq__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for WebKit browsers */
}

.page-blog-ee66-promotions-faq__faq-question:hover {
    background-color: var(--ee66-primary-color);
}

.page-blog-ee66-promotions-faq__faq-qtext {
    flex-grow: 1;
}

.page-blog-ee66-promotions-faq__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--ee66-gold-color);
}

.page-blog-ee66-promotions-faq__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: var(--ee66-text-secondary);
}

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

.page-blog-ee66-promotions-faq__faq-answer ul,
.page-blog-ee66-promotions-faq__faq-answer ol {
    margin-left: 20px;
    margin-bottom: 10px;
}

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

/* CTA Section */
.page-blog-ee66-promotions-faq__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--ee66-deep-green); /* Use a darker green for CTA background */
    color: var(--ee66-text-main);
}

.page-blog-ee66-promotions-faq__cta-title {
    font-size: clamp(1.8em, 3.5vw, 2.2em);
    font-weight: 700;
    color: var(--ee66-gold-color);
    margin-bottom: 20px;
}

.page-blog-ee66-promotions-faq__cta-description {
    font-size: 1.1em;
    color: var(--ee66-text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-ee66-promotions-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-ee66-promotions-faq__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    box-sizing: border-box; /* Important for responsive buttons */
    max-width: 100%; /* Ensure responsiveness */
}

.page-blog-ee66-promotions-faq__btn-primary {
    background: var(--ee66-button-gradient);
    color: #ffffff; /* White text for primary button */
    border: none;
}

.page-blog-ee66-promotions-faq__btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--ee66-glow-color);
    transform: translateY(-2px);
}

.page-blog-ee66-promotions-faq__btn-secondary {
    background-color: #ffffff;
    color: var(--ee66-primary-color);
    border: 2px solid var(--ee66-primary-color);
}

.page-blog-ee66-promotions-faq__btn-secondary:hover {
    background-color: var(--ee66-primary-color);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Image responsiveness base styles */
.page-blog-ee66-promotions-faq img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure content area images are not smaller than 200px */
.page-blog-ee66-promotions-faq__faq-answer img {
    min-width: 200px;
    min-height: 200px;
    object-fit: contain; /* Ensure image content is visible */
}

/* No CSS filters for images */
.page-blog-ee66-promotions-faq img {
    filter: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-blog-ee66-promotions-faq {
        font-size: 15px;
        line-height: 1.5;
    }

    .page-blog-ee66-promotions-faq__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-ee66-promotions-faq__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* Small top padding */
    }

    .page-blog-ee66-promotions-faq__main-title {
        font-size: clamp(1.8em, 7vw, 2.2em);
    }

    .page-blog-ee66-promotions-faq__section-title,
    .page-blog-ee66-promotions-faq__cta-title {
        font-size: clamp(1.6em, 6vw, 2em);
    }

    .page-blog-ee66-promotions-faq__hero-image-wrapper {
        max-height: 250px;
    }

    .page-blog-ee66-promotions-faq__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-ee66-promotions-faq__faq-answer {
        padding: 0 20px 15px;
    }

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

    .page-blog-ee66-promotions-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-ee66-promotions-faq__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Images */
    .page-blog-ee66-promotions-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-ee66-promotions-faq__section,
    .page-blog-ee66-promotions-faq__card,
    .page-blog-ee66-promotions-faq__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-ee66-promotions-faq__video-section {
        padding-top: 10px !important;
    }

    /* Videos - No videos in this page, but include for completeness if they were */
    .page-blog-ee66-promotions-faq video,
    .page-blog-ee66-promotions-faq__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-ee66-promotions-faq__video-section,
    .page-blog-ee66-promotions-faq__video-container,
    .page-blog-ee66-promotions-faq__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-ee66-promotions-faq__video-section {
        padding-top: 10px !important;
    }
    .page-blog-ee66-promotions-faq__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}