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

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

.page-promotions a {
    color: var(--page-promotions-gold); /* Links in content */
    text-decoration: none;
}

.page-promotions a:hover {
    text-decoration: underline;
}

/* Sections */
.page-promotions__hero-section,
.page-promotions__featured-promos,
.page-promotions__promo-types,
.page-promotions__how-to-claim,
.page-promotions__terms-conditions,
.page-promotions__faq,
.page-promotions__final-cta {
    padding: 60px 20px;
    position: relative;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%; /* Ensure full width for flex children */
}

/* Hero Section */
.page-promotions__hero-section {
    padding-top: 10px; /* Small top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--page-promotions-bg);
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Match container width */
    margin-bottom: 30px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__main-title {
    font-size: clamp(2em, 3.5vw, 3.2em); /* Using clamp for responsive font size */
    color: var(--page-promotions-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 0.05em;
}

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

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

.page-promotions__cta-buttons--center {
    margin-top: 40px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure responsiveness */
    width: auto; /* Default width */
}

.page-promotions__btn-primary {
    background: var(--page-promotions-btn-gradient);
    color: var(--page-promotions-text-main); /* White text on dark/gradient button */
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--page-promotions-gold);
    border-color: var(--page-promotions-gold);
}

.page-promotions__btn-secondary:hover {
    background: rgba(242, 193, 78, 0.1);
    transform: translateY(-3px);
}

.page-promotions__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions__btn-large {
    padding: 20px 40px;
    font-size: 1.2em;
}

/* Section Titles & Descriptions */
.page-promotions__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--page-promotions-gold);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* Featured Promos */
.page-promotions__featured-promos {
    background-color: var(--page-promotions-bg);
    color: var(--page-promotions-text-main);
}

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

.page-promotions__promo-card {
    background-color: var(--page-promotions-card-bg); /* Card BG color */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-promotions-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

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

.page-promotions__card-title a {
    color: var(--page-promotions-gold);
    text-decoration: none;
}

.page-promotions__card-title a:hover {
    text-decoration: underline;
}

.page-promotions__card-text {
    color: var(--page-promotions-text-secondary);
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to take available space */
}

/* Promo Types */
.page-promotions__promo-types {
    background-color: var(--page-promotions-bg); /* Ensure consistent background */
    color: var(--page-promotions-text-main);
}

.page-promotions__type-item {
    margin-bottom: 60px;
    border-bottom: 1px solid var(--page-promotions-divider);
    padding-bottom: 40px;
}

.page-promotions__type-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-promotions__type-title {
    font-size: clamp(1.5em, 2.5vw, 2em);
    color: var(--page-promotions-gold);
    margin-bottom: 30px;
    text-align: center;
}

.page-promotions__type-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-promotions__type-content--reverse {
    flex-direction: row-reverse;
}

.page-promotions__type-image {
    flex: 1;
    min-width: 300px; /* Minimum width to prevent image from becoming too small */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
}

.page-promotions__type-text {
    flex: 2;
    color: var(--page-promotions-text-secondary);
}

.page-promotions__type-text ul {
    list-style: disc inside;
    margin-top: 15px;
    padding-left: 20px;
}

.page-promotions__type-text li {
    margin-bottom: 10px;
    color: var(--page-promotions-text-secondary);
}

.page-promotions__type-text strong {
    color: var(--page-promotions-text-main);
}

/* How to Claim */
.page-promotions__how-to-claim {
    background-color: var(--page-promotions-deep-green); /* Darker green background */
    color: var(--page-promotions-text-main);
}

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

.page-promotions__step-card {
    background-color: var(--page-promotions-card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-promotions-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__step-icon {
    width: 60px;
    height: 60px;
    background: var(--page-promotions-gold);
    color: var(--page-promotions-bg); /* Dark text on gold icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

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

.page-promotions__step-text {
    color: var(--page-promotions-text-secondary);
    font-size: 0.95em;
}

/* Terms and Conditions */
.page-promotions__terms-conditions {
    background-color: var(--page-promotions-bg); /* Consistent dark background */
    color: var(--page-promotions-text-main);
}

.page-promotions__terms-list {
    list-style: decimal inside;
    padding-left: 20px;
    color: var(--page-promotions-text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__terms-list li {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--page-promotions-text-secondary);
}

.page-promotions__terms-list strong {
    color: var(--page-promotions-text-main);
}

/* FAQ */
.page-promotions__faq {
    background-color: var(--page-promotions-deep-green);
    color: var(--page-promotions-text-main);
}

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

.page-promotions__faq-item {
    background-color: var(--page-promotions-card-bg);
    border: 1px solid var(--page-promotions-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    color: var(--page-promotions-text-main);
    background-color: var(--page-promotions-card-bg);
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: rgba(var(--page-promotions-primary-color), 0.1);
}

.page-promotions__faq-qtext {
    flex-grow: 1;
    color: var(--page-promotions-gold);
}

.page-promotions__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    width: 30px;
    text-align: center;
    color: var(--page-promotions-gold);
}

.page-promotions__faq-answer {
    padding: 0 25px 20px;
    color: var(--page-promotions-text-secondary);
    font-size: 0.95em;
    line-height: 1.7;
}

.page-promotions__faq-answer p {
    margin-bottom: 0;
    color: var(--page-promotions-text-secondary);
}

/* Details element specific styling */
.page-promotions__faq-item summary {
    list-style: none;
}

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

/* Final CTA */
.page-promotions__final-cta {
    background-color: var(--page-promotions-bg);
    color: var(--page-promotions-text-main);
    text-align: center;
    padding-bottom: 80px;
}

.page-promotions__final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions__type-content {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__type-content--reverse {
        flex-direction: column;
    }
    .page-promotions__type-image {
        margin-bottom: 30px;
    }
    .page-promotions__type-text ul {
        padding-left: 0;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section,
    .page-promotions__featured-promos,
    .page-promotions__promo-types,
    .page-promotions__how-to-claim,
    .page-promotions__terms-conditions,
    .page-promotions__faq,
    .page-promotions__final-cta {
        padding: 40px 15px;
    }

    .page-promotions__container,
    .page-promotions__promo-card,
    .page-promotions__type-item,
    .page-promotions__step-card,
    .page-promotions__faq-item,
    .page-promotions__final-cta-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__hero-section {
        padding-top: 10px !important;
    }

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

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

    .page-promotions__intro-description,
    .page-promotions__section-description,
    .page-promotions__card-text,
    .page-promotions__type-text p,
    .page-promotions__step-text,
    .page-promotions__terms-list li,
    .page-promotions__faq-answer p {
        font-size: 1em;
    }

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

    /* Buttons responsive */
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px; /* Add padding to prevent text from touching edges */
        padding-right: 15px;
    }

    .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;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-promotions__promo-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }
}