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

.page-promotions {
    background-color: var(--color-background); /* Use the specified background color for the page */
    color: var(--color-text-main); /* Default text color for the page content */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Container for common content width */
.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--color-deep-green); /* A darker green for the hero section background */
    color: var(--color-text-main);
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px; /* Space between image and content */
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-promotions__hero-content {
    max-width: 800px;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-gold); /* Using gold for main title for prominence */
}

.page-promotions__description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--color-text-secondary);
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none; /* Reset border for button gradient */
    box-sizing: border-box; /* Ensure padding/border included in width */
    max-width: 100%; /* Ensure button doesn't overflow */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    text-align: center;
}

.page-promotions__btn-primary {
    background: var(--color-button-gradient);
    color: var(--color-text-main); /* White-ish text for primary button */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--color-primary); /* Green text for secondary button */
    border: 2px solid var(--color-primary);
}

.page-promotions__btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-text-main); /* White-ish text on hover */
    transform: translateY(-2px);
}

/* Card button specific styles */
.page-promotions__card-button {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: var(--color-primary);
    color: var(--color-text-main);
    border-radius: 5px;
}

.page-promotions__card-button:hover {
    background: var(--color-secondary);
}

/* Sections */
.page-promotions__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.page-promotions__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--color-text-secondary);
}

.page-promotions__dark-section {
    background-color: var(--color-background); /* Use the overall page background */
    padding: 80px 0;
}

.page-promotions__light-bg {
    background-color: var(--color-card-bg); /* A slightly lighter dark background for contrast */
    color: var(--color-text-main);
    padding: 80px 0;
}

/* Promotions List Section */
.page-promotions__promotions-list-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-promotions__promotion-card {
    background-color: var(--color-card-bg); /* Card background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--color-text-main); /* Card text color */
}

.page-promotions__promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
    width: 100%;
    height: 225px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    display: block;
}

.page-promotions__card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page-promotions__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__card-title a {
    color: var(--color-gold); /* Link color in card title */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: var(--color-glow);
}

.page-promotions__card-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__full-promotions-cta {
    text-align: center;
    margin-top: 60px;
}

/* VIP Program Section */
.page-promotions__vip-program-section {
    background-color: var(--color-deep-green); /* Another dark background for contrast */
    padding: 80px 0;
    color: var(--color-text-main);
}

.page-promotions__vip-program-section .page-promotions__container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.page-promotions__vip-content {
    flex: 1;
}

.page-promotions__vip-content .page-promotions__section-title {
    text-align: left;
    color: var(--color-gold);
}

.page-promotions__vip-content .page-promotions__section-description {
    text-align: left;
    margin-left: 0;
    color: var(--color-text-secondary);
}

.page-promotions__vip-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-promotions__vip-benefits li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--color-text-main);
}

.page-promotions__vip-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--color-gold);
}

.page-promotions__vip-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions__vip-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 80px 0;
    background-color: var(--color-card-bg); /* Use card background for FAQ section */
    color: var(--color-text-main);
}

.page-promotions__faq-section .page-promotions__section-title {
    color: var(--color-gold);
}

.page-promotions__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__faq-item {
    background-color: var(--color-background); /* Inner FAQ item background */
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-text-main);
    transition: background-color 0.3s ease;
    list-style: none; /* Remove default marker for details summary */
}

.page-promotions__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
    background-color: var(--color-deep-green); /* Darker on open */
}

.page-promotions__faq-qtext {
    flex-grow: 1;
}

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--color-gold);
}

.page-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* Final CTA Section */
.page-promotions__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-deep-green); /* Dark background */
    color: var(--color-text-main);
}

.page-promotions__cta-section .page-promotions__section-title {
    color: var(--color-gold);
}

.page-promotions__cta-section .page-promotions__section-description {
    color: var(--color-text-secondary);
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__vip-program-section .page-promotions__container {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__vip-content .page-promotions__section-title,
    .page-promotions__vip-content .page-promotions__section-description {
        text-align: center;
    }
    .page-promotions__vip-benefits {
        align-items: center;
        text-align: left;
    }
    .page-promotions__vip-benefits li {
        justify-content: center;
    }
    .page-promotions__vip-image-wrapper {
        margin-top: 40px;
    }
}

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

    .page-promotions__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles header offset */
    }

    .page-promotions__main-title {
        font-size: 2.2rem;
    }

    .page-promotions__description {
        font-size: 1rem;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions a[class*="button"],
    .page-promotions a[class*="btn"] {
        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-promotions__container,
    .page-promotions__promotions-grid,
    .page-promotions__promotion-card,
    .page-promotions__faq-list,
    .page-promotions__faq-item,
    .page-promotions__hero-image-wrapper,
    .page-promotions__vip-image-wrapper,
    .page-promotions__content-area,
    .page-promotions__vip-program-section .page-promotions__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Images responsive */
    .page-promotions img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions__card-image {
        height: auto; /* Allow height to adjust on mobile */
    }

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

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

    .page-promotions__dark-section,
    .page-promotions__light-bg,
    .page-promotions__vip-program-section,
    .page-promotions__faq-section,
    .page-promotions__cta-section {
        padding: 50px 0;
    }

    .page-promotions__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-promotions__faq-answer {
        padding: 0 20px 15px;
    }
    
    .page-promotions__vip-benefits li {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__vip-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}