.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: var(--black-color); /* From shared.css */
}

/* Fixed header offset - applied to the first main content section */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    padding-bottom: 60px;
    background-color: #26A9E0; /* Brand primary color for hero */
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Prevent image overflow */
}

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

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 30px;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

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

.page-promotions__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0; /* Primary color for titles on light background */
}

.page-promotions__section-title--white {
    color: #FFFFFF; /* White titles on dark background */
}

.page-promotions__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-promotions__paragraph--white {
    color: #f0f0f0;
}

.page-promotions__highlight {
    font-weight: bold;
    color: #EA7C07; /* Login color for highlights */
}

/* Buttons */
.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    cursor: pointer;
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-promotions__btn-primary {
    background-color: #EA7C07; /* Login color for primary button */
    color: #FFFFFF;
    border: 2px solid #EA7C07;
}

.page-promotions__btn-primary:hover {
    background-color: #d16b00;
    border-color: #d16b00;
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: #26A9E0; /* Primary color for secondary button text */
    border: 2px solid #26A9E0;
    margin-left: 20px;
}

.page-promotions__btn-secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
}

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

/* Sections */
.page-promotions__introduction-section {
    padding: 80px 0;
    background-color: #FFFFFF; /* Light background for contrast */
    color: #333333; /* Dark text for light background */
}

.page-promotions__promotions-list-section {
    padding: 80px 0;
    background-color: #26A9E0; /* Primary color background */
    color: #FFFFFF;
}

.page-promotions__how-to-claim-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    color: #333333;
}

.page-promotions__terms-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Dark background for terms */
    color: #f0f0f0;
}

.page-promotions__faq-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    color: #333333;
}

.page-promotions__cta-final-section {
    padding: 80px 0;
    background-color: #000000; /* Black background for final CTA */
    color: #FFFFFF;
    text-align: center;
}

/* Image & Text Block */
.page-promotions__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-promotions__content-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    object-fit: cover;
    max-width: 100%; /* Ensure responsiveness */
    height: auto;
    display: block;
}

/* Promotion Grid */
.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: rgba(255, 255, 255, 0.1); /* Semi-transparent white on primary background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards are same height */
    box-sizing: border-box;
    color: #FFFFFF;
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__promo-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    max-width: 100%; /* Ensure responsiveness */
    display: block;
}

.page-promotions__promo-card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-promotions__promo-card-description {
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1; /* Push button to bottom */
    color: #f0f0f0;
}

/* Lists */
.page-promotions__ordered-list,
.page-promotions__unordered-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__list-item {
    background-color: #f9f9f9;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: #333333;
    counter-increment: list-counter;
    position: relative;
    padding-left: 50px;
}

.page-promotions__list-item::before {
    content: counter(list-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #26A9E0;
    color: #FFFFFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-promotions__list-item-title {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: #26A9E0;
}

.page-promotions__list-item-description {
    font-size: 1em;
    color: #555555;
}

.page-promotions__unordered-list--white .page-promotions__list-item {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    box-shadow: none;
}

.page-promotions__unordered-list--white .page-promotions__list-item::before {
    background-color: #EA7C07;
    color: #FFFFFF;
}

/* FAQ */
.page-promotions__faq-list {
    margin-top: 40px;
}

.page-promotions__faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #f0f0f0;
    color: #26A9E0;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: #e0e0e0;
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #EA7C07; /* Login color for toggle icon */
    transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding 0 */
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #FFFFFF;
    color: #555555;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to contain content */
    padding: 15px 25px 25px; /* Padding when active */
}

.page-promotions__faq-answer p {
    margin-top: 0;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promo-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-bottom: 40px;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions__cta-buttons-wrapper {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions__paragraph {
        font-size: 1em;
    }

    .page-promotions__image-text-block {
        flex-direction: column;
        gap: 30px;
    }
    .page-promotions__content-image {
        min-width: unset;
        width: 100%;
    }

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

    .page-promotions__promo-card {
        padding: 20px;
    }
    .page-promotions__promo-card-image {
        height: 180px;
    }
    .page-promotions__promo-card-title {
        font-size: 1.3em;
    }

    .page-promotions__list-item {
        padding: 15px 20px 15px 50px;
    }
    .page-promotions__list-item-title {
        font-size: 1.1em;
    }
    .page-promotions__list-item-description {
        font-size: 0.95em;
    }

    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer {
        padding: 0 20px;
    }
    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 10px 20px 20px;
    }

    /* Mobile image and video responsiveness */
    .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__introduction-section,
    .page-promotions__promotions-list-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__cta-final-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    /* Buttons in mobile */
    .page-promotions__cta-button,
    .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__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;
        overflow: hidden !important;
    }
    .page-promotions__cta-buttons-wrapper {
        flex-direction: column; /* Vertical stack for buttons on mobile */
    }
}