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

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

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

.page-promotions__section-title {
    font-size: 2.5em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions__text-block {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-details {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.05em;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-primary {
    background: var(--btn-gradient);
    color: var(--text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

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

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    margin-left: 15px;
}

.page-promotions__btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--text-main);
    transform: translateY(-2px);
}

.page-promotions__btn-details {
    background: var(--deep-green);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-promotions__btn-details:hover {
    background: var(--color-primary);
    transform: translateY(-1px);
}

.page-promotions__btn-large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 550px;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--bg-dark);
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.page-promotions__hero-title {
    font-size: 3em;
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
}

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

.page-promotions__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Image Styles */
.page-promotions__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-promotions__intro-section {
    padding: 80px 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--divider-color);
}

/* Featured Promotions Section */
.page-promotions__featured-promos-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

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

.page-promotions__promo-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-promotions__promo-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.page-promotions__promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

.page-promotions__promo-description {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
    padding: 80px 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--divider-color);
}

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

.page-promotions__step-item {
    background-color: var(--deep-green);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    counter-increment: step-counter;
    position: relative;
}

.page-promotions__step-item::before {
    content: "0" counter(step-counter);
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2.5em;
    font-weight: bold;
    color: var(--gold-color);
    opacity: 0.7;
    line-height: 1;
}

.page-promotions__step-title {
    font-size: 1.3em;
    color: var(--color-secondary);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-promotions__step-item a {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-promotions__step-item a:hover {
    color: var(--glow-color);
}

/* Terms Section */
.page-promotions__terms-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--divider-color);
}

.page-promotions__terms-list {
    list-style: disc;
    padding-left: 40px;
    margin-top: 30px;
    color: var(--text-secondary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__terms-section a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.page-promotions__terms-section a:hover {
    color: var(--glow-color);
}

/* Why Choose Section */
.page-promotions__why-choose-section {
    padding: 80px 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--divider-color);
}

.page-promotions__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.page-promotions__benefit-item {
    background-color: var(--deep-green);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__benefit-icon {
    width: 200px; /* Min 200px */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

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

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

/* FAQ Section */
.page-promotions__faq-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

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

.page-promotions__faq-item {
    background-color: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: var(--color-secondary);
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--border-color);
    list-style: none; /* For details/summary */
}

.page-promotions__faq-question::-webkit-details-marker {
    display: none; /* For details/summary */
}

.page-promotions__faq-question:hover {
    background-color: var(--color-primary);
    color: var(--text-main);
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
}

.page-promotions__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--text-secondary);
    background-color: var(--bg-card);
}

/* Final CTA Section */
.page-promotions__final-cta-section {
    padding: 80px 0;
    background-color: var(--deep-green);
    text-align: center;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__final-cta-section .page-promotions__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main);
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promo-grid,
    .page-promotions__steps-list,
    .page-promotions__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions__container {
        padding: 0 15px;
    }
    .page-promotions__hero-section {
        min-height: 400px;
        padding-bottom: 40px;
    }
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__btn-details,
    .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;
        margin-left: 0 !important; /* Override margin-left for secondary button */
    }
    .page-promotions__hero-cta-buttons {
        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__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-promotions__text-block {
        font-size: 1em;
    }
    .page-promotions__intro-section,
    .page-promotions__featured-promos-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__why-choose-section,
    .page-promotions__faq-section,
    .page-promotions__final-cta-section {
        padding: 40px 0;
    }

    /* Images responsive */
    .page-promotions img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__image,
    .page-promotions__promo-image,
    .page-promotions__benefit-icon {
        width: 100% !important;
        height: auto !important;
    }

    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-section,
    .page-promotions__intro-section,
    .page-promotions__featured-promos-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__why-choose-section,
    .page-promotions__faq-section,
    .page-promotions__final-cta-section {
        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; /* body already handles --header-offset */
    }

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

    .page-promotions__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer {
        padding: 15px 20px;
    }
    .page-promotions__step-item::before {
        font-size: 2em;
        top: -10px;
    }
    .page-promotions__promo-title {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-description {
        font-size: 0.9em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__btn-details {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__hero-content {
        padding: 15px;
    }
    .page-promotions__hero-cta-buttons {
        padding-left: 0;
        padding-right: 0;
    }
    .page-promotions__promo-content {
        padding: 20px;
    }
    .page-promotions__promo-title {
        font-size: 1.1em;
    }
    .page-promotions__promo-description {
        font-size: 0.9em;
    }
    .page-promotions__faq-question {
        font-size: 0.9em;
    }
    .page-promotions__faq-answer {
        font-size: 0.9em;
    }
    .page-promotions__steps-list,
    .page-promotions__benefits-grid {
        gap: 20px;
    }
    .page-promotions__step-item,
    .page-promotions__benefit-item {
        padding: 20px;
    }
    .page-promotions__step-title,
    .page-promotions__benefit-title {
        font-size: 1.1em;
    }
    .page-promotions__terms-list {
        padding-left: 20px;
    }
}