.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default for light background */
    background-color: #ffffff; /* Assuming body is light, adjust if shared.css changes it */
}

/* Color contrast adaptations based on background */
.page-promotions__dark-bg {
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff;
}

.page-promotions__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
}

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

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
    border-radius: 8px;
    margin-top: 20px; /* Space from top if image is not full height */
}

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions__description {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.page-promotions__btn-primary {
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-promotions__btn-primary:hover {
    background-color: #1a7bb0;
    transform: translateY(-2px);
}

.page-promotions__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0; /* Brand primary color */
    border: 2px solid #26A9E0;
}

.page-promotions__btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

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

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    margin-bottom: 40px;
    color: #26A9E0; /* Brand primary color for titles */
}

.page-promotions__section-title--light {
    color: #ffffff;
}

.page-promotions__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__text-block--light {
    color: #f0f0f0;
}

.page-promotions__inline-link {
    color: #26A9E0; /* Brand primary color */
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions__inline-link--light {
    color: #ffffff;
}

.page-promotions__highlight {
    font-weight: bold;
    color: #26A9E0; /* Brand primary color */
}

.page-promotions__text-block--light .page-promotions__highlight {
    color: #ffffff; /* White highlight on dark background */
}

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

.page-promotions__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #333333;
}

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

.page-promotions__card-image {
    width: 100%;
    max-width: 400px; /* Ensure image is not too small */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #26A9E0; /* Brand primary color */
    margin-bottom: 15px;
}

.page-promotions__card-text {
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1; /* Allows text to take available space */
}

.page-promotions__how-to-claim .page-promotions__content-flex {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 40px;
}

.page-promotions__content-text {
    flex: 1;
}

.page-promotions__image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions__side-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__steps {
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-promotions__step-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 5px solid #26A9E0;
}

.page-promotions__step-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-promotions__terms-conditions .page-promotions__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__list-item {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly visible on dark bg */
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #f0f0f0;
}

.page-promotions__list-item strong {
    color: #ffffff;
}

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

.page-promotions__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__faq-item summary {
    list-style: none; /* Remove default marker */
    cursor: pointer;
    padding: 20px 25px;
    background-color: #ffffff;
    font-weight: bold;
    color: #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-promotions__faq-item summary:hover {
    background-color: #f0f0f0;
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
    padding: 15px 25px 20px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    color: #555555;
    font-size: 0.95em;
}

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

.page-promotions__cta-final {
    padding: 80px 20px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-promotions__hero-content {
        max-width: 700px;
    }
    .page-promotions__main-title {
        font-size: clamp(2em, 5vw, 2.8em);
    }
    .page-promotions__description {
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: clamp(1.6em, 4vw, 2.4em);
    }
    .page-promotions__how-to-claim .page-promotions__content-flex {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__image-col {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile specific overrides with !important */
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles --header-offset */
    }

    .page-promotions__hero-content {
        padding: 15px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em) !important;
        margin-bottom: 15px;
    }

    .page-promotions__description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__section {
        padding: 40px 15px;
    }

    .page-promotions__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-bottom: 30px;
    }

    .page-promotions__text-block {
        font-size: 0.95em;
    }

    .page-promotions__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-promotions__card {
        padding: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions__card-image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions__side-image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions__list-item {
        font-size: 0.95em;
    }

    .page-promotions__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-promotions__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.9em;
    }

    /* Ensure all image containers are also 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-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .page-promotions__how-to-claim .page-promotions__content-flex {
        gap: 20px;
    }
}