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

.page-promotions {
    background-color: var(--background-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__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0;
    text-align: center;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

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

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
}

.page-promotions__main-title {
    color: var(--gold-color);
    font-size: clamp(2em, 4vw, 3.2em); /* Adjusted to clamp, not fixed large value */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-promotions__btn-primary {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

.page-promotions__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.page-promotions__intro-section,
.page-promotions__how-to-claim,
.page-promotions__faq-section {
    padding: 60px 0;
    background-color: var(--deep-green);
}

.page-promotions__promotions-list,
.page-promotions__benefits-section,
.page-promotions__call-to-action {
    padding: 60px 0;
    background-color: var(--background-dark);
}

.page-promotions__dark-section {
    background-color: var(--deep-green);
    color: var(--text-main);
}

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

.page-promotions__promo-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-promotions__card-text {
    font-size: 1em;
    color: var(--text-secondary);
    margin-bottom: 25px;
    padding: 0 15px;
    flex-grow: 1;
}

.page-promotions__list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 900px;
}

.page-promotions__list-item {
    background-color: var(--card-bg);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    color: var(--text-main);
}

.page-promotions__list-item strong {
    color: var(--gold-color);
}

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

.page-promotions__benefit-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions__benefit-item:hover {
    transform: translateY(-5px);
}

.page-promotions__benefit-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

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

.page-promotions__faq-item summary {
    list-style: none;
}

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

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

.page-promotions__faq-question:hover {
    background-color: var(--deep-green);
}

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

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

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

.page-promotions__call-to-action {
    text-align: center;
    padding: 80px 0;
}

.page-promotions__call-to-action .page-promotions__section-title {
    color: var(--gold-color);
}

.page-promotions__call-to-action .page-promotions__section-description {
    margin-bottom: 50px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-promotions__hero-image-wrapper {
        max-height: 550px;
    }
    .page-promotions__main-title {
        font-size: clamp(2em, 5vw, 2.8em);
    }
    .page-promotions__intro-text {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: clamp(1.8em, 4vw, 2.2em);
    }
}

@media (max-width: 768px) {
    .page-promotions__container {
        padding: 0 15px;
    }
    .page-promotions__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-promotions__hero-image-wrapper {
        max-height: 400px;
        margin-bottom: 20px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-promotions__intro-text {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-promotions__btn-primary {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions__section-title {
        font-size: clamp(1.5em, 5vw, 2em);
        margin-bottom: 25px;
    }
    .page-promotions__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-promotions__intro-section,
    .page-promotions__promotions-list,
    .page-promotions__how-to-claim,
    .page-promotions__benefits-section,
    .page-promotions__faq-section,
    .page-promotions__call-to-action {
        padding: 40px 0;
    }

    .page-promotions__promo-card {
        padding-bottom: 20px;
    }
    .page-promotions__card-image {
        height: 200px;
    }
    .page-promotions__card-title {
        font-size: 1.4em;
    }
    .page-promotions__list-item,
    .page-promotions__benefit-item {
        padding: 15px;
        font-size: 1em;
    }
    .page-promotions__benefit-title {
        font-size: 1.4em;
    }
    .page-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-promotions__faq-answer {
        padding: 10px 20px 15px 20px;
    }

    /* Images responsive */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-section,
    .page-promotions__hero-image-wrapper,
    .page-promotions__promo-card,
    .page-promotions__list,
    .page-promotions__benefits-grid,
    .page-promotions__benefit-item,
    .page-promotions__faq-list,
    .page-promotions__faq-item {
        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__hero-section,
    .page-promotions__intro-section,
    .page-promotions__promotions-list,
    .page-promotions__how-to-claim,
    .page-promotions__benefits-section,
    .page-promotions__faq-section,
    .page-promotions__call-to-action {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-promotions__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__hero-section {
        padding-top: 10px !important; /* body handles --header-offset */
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-image-wrapper {
        max-height: 300px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }
    .page-promotions__btn-primary {
        padding: 10px 20px;
        font-size: 0.95em;
    }
    .page-promotions__cards-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__benefits-grid {
        grid-template-columns: 1fr;
    }
}