:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-bg-dark: #08160F;
    --color-card-bg: #11271B;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;

    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-promotions {
    background-color: var(--color-bg-dark); /* Ensure main content area uses the specified background */
    color: var(--color-text-main); /* Default text color for the page */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section:nth-of-type(odd):not(.page-promotions__dark-section) {
    background-color: var(--color-card-bg); /* Alternate section background for visual separation, exclude dark sections */
}

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

.page-promotions__section-title {
    font-size: 2.8em; /* Using em for relative sizing, will adjust for mobile via clamp or media query */
    color: var(--color-glow); /* Using glow for titles */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-promotions__section-title--light {
    color: var(--color-gold); /* Gold for titles on dark sections */
}

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

.page-promotions__section-description--light {
    color: var(--color-text-main);
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure hero has a decent height */
    background-color: var(--color-bg-dark); /* Fallback */
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.2; /* Slightly dim image to ensure text readability */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 10px;
}

.page-promotions__main-title {
    font-size: clamp(2.5em, 5vw, 3.8em); /* Responsive font size for H1 */
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.2em;
    color: var(--color-text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.page-promotions__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--color-text-main);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-promotions__cta-button--small {
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-promotions__cta-button--primary {
    background: var(--button-gradient);
    color: var(--color-text-main);
}

.page-promotions__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Benefits Section */
.page-promotions__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__benefit-card {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: 1px solid var(--color-border);
}

.page-promotions__benefit-title {
    font-size: 1.5em;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__benefit-text {
    color: var(--color-text-secondary);
    font-size: 1em;
}

/* Categories Section */
.page-promotions__categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__category-card {
    background-color: var(--color-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.page-promotions__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--color-divider);
}

.page-promotions__category-title {
    font-size: 1.6em;
    color: var(--color-gold);
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-promotions__category-text {
    color: var(--color-text-secondary);
    font-size: 0.95em;
    padding: 0 15px 20px;
    flex-grow: 1;
}

/* Featured Promotions Section */
.page-promotions__dark-section {
    background-color: var(--color-deep-green); /* Use a darker green for contrast */
    color: var(--color-text-main);
}

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

.page-promotions__featured-card {
    background-color: var(--color-card-bg); /* Use card background for featured cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.page-promotions__featured-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--color-divider);
}

.page-promotions__featured-content {
    padding: 25px;
    flex-grow: 1;
}

.page-promotions__featured-title {
    font-size: 1.4em;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__featured-text {
    color: var(--color-text-secondary);
    font-size: 0.9em;
    margin-bottom: 20px;
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
    background-color: var(--color-bg-dark); /* Ensure background is consistent */
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__step-item {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: 1px solid var(--color-border);
}

.page-promotions__step-title {
    font-size: 1.6em;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__step-text {
    color: var(--color-text-secondary);
    font-size: 1em;
    margin-bottom: 20px;
}

/* Terms and Conditions Section */
.page-promotions__terms-list {
    list-style: disc;
    text-align: left;
    max-width: 900px;
    margin: 40px auto;
    padding-left: 20px;
    color: var(--color-text-secondary);
}

.page-promotions__term-item {
    margin-bottom: 10px;
    font-size: 1em;
}

/* FAQ Section */
.page-promotions__faq-section {
    background-color: var(--color-card-bg);
}

.page-promotions__faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-promotions__faq-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-items {
    text-align: left;
}

.page-promotions__faq-item {
    background-color: var(--color-bg-dark); /* Darker background for FAQ item */
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    color: var(--color-text-main);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--color-gold);
    background-color: var(--color-deep-green); /* Deeper green for summary */
    border-bottom: 1px solid var(--color-divider);
    list-style: none; /* Remove default marker */
}

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

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

.page-promotions__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--color-glow);
    transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to cross */
}

.page-promotions__faq-answer {
    padding: 15px 25px 20px;
    font-size: 0.95em;
    color: var(--color-text-secondary);
}

.page-promotions__contact-cta {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--color-bg-dark);
    border-radius: 10px;
    border: 1px solid var(--color-border);
}

.page-promotions__contact-text {
    font-size: 1.1em;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

/* Final CTA Section */
.page-promotions__final-cta-section {
    padding: 80px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions__section-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-content {
        padding: 30px 20px;
    }
    .page-promotions__main-title {
        font-size: clamp(2.2em, 4.5vw, 3.5em);
    }
    .page-promotions__faq-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__faq-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__container {
        padding: 0 15px; /* Add padding for mobile */
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__section-description {
        font-size: 1em;
    }
    .page-promotions__hero-section {
        min-height: 400px;
    }
    .page-promotions__hero-content {
        padding: 20px 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.8em); /* Adjusted clamp for smaller screens */
        margin-bottom: 15px;
    }
    .page-promotions__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__benefits-grid,
    .page-promotions__categories-grid,
    .page-promotions__featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions__benefit-card,
    .page-promotions__category-card,
    .page-promotions__featured-card,
    .page-promotions__step-item,
    .page-promotions__faq-item,
    .page-promotions__contact-cta {
        padding: 20px;
    }
    .page-promotions__category-image,
    .page-promotions__featured-image {
        height: 180px;
    }
    .page-promotions__faq-image {
        margin-bottom: 20px;
    }
    .page-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-promotions__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.9em;
    }

    /* Mobile image, video, button overflow prevention */
    .page-promotions img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-promotions video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper,
    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-promotions__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important; /* Ensure no overflow */
    }
    .page-promotions__cta-button,
    .page-promotions__btn-primary,
    .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 handled by container */
    }
    .page-promotions__cta-buttons {
        display: flex;
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 10px;
    }
    .page-promotions__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
}