.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
    background-color: #0a0a0a;
}

/* Fixed header spacing */
.page-promotions__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: left;
    background-color: #0a0a0a;
}

.page-promotions__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for titles */
    font-weight: bold;
}

.page-promotions__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__intro-description,
.page-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0; /* Slightly off-white for body text */
}

/* 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, transform 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

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

.page-promotions__btn-primary:hover {
    background-color: #1e87b7; /* Darker shade for hover */
    transform: translateY(-2px);
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

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

/* Hero Section */
.page-promotions__hero-content {
    flex: 1;
    padding: 40px;
    max-width: 60%;
    z-index: 1;
}

.page-promotions__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.page-promotions__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-promotions__feature-item {
    padding: 30px;
    text-align: center;
}

.page-promotions__feature-icon {
    width: 100%; /* Ensure large images for cards */
    max-width: 400px; /* Example max width for card image */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions__feature-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-promotions__feature-description {
    color: #cccccc;
}

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

.page-promotions__promo-card {
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__promo-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__promo-title {
    font-size: 1.6em;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-promotions__promo-description {
    color: #cccccc;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* How to Claim Steps */
.page-promotions__claim-steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    text-align: left;
}

.page-promotions__step-item {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05); /* Lighter background for steps */
    border-left: 5px solid #26A9E0;
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-promotions__step-item p {
    color: #cccccc;
    margin-bottom: 15px;
}

/* Video Section */
.page-promotions__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-top: 30px;
    border-radius: 10px;
}

.page-promotions__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    cursor: pointer; /* Indicate clickable video */
}

.page-promotions__video-cta {
    margin-top: 30px;
}

/* Terms & Conditions */
.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    text-align: left;
}

.page-promotions__terms-item {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.page-promotions__terms-heading {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-promotions__terms-item p {
    color: #cccccc;
}

.page-promotions__link {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-promotions__faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions__faq-question h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.2em; /* Ensure consistent font size for question title */
}

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

.page-promotions__faq-item.active .page-promotions__faq-toggle {
    transform: rotate(45deg); /* Changes + to x or a dash visually */
}

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #cccccc;
}

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

.page-promotions__faq-answer p {
    margin: 0;
    color: #cccccc;
}

/* Final CTA */
.page-promotions__section--final-cta {
    background-color: #26A9E0; /* Primary brand color background */
    color: #ffffff;
    padding: 80px 0;
}

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

.page-promotions__section--final-cta .page-promotions__text-block {
    color: #ffffff;
}

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

/* General card styling for dark background */
.page-promotions__card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly visible card on dark background */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__main-title {
        font-size: 2.8em;
    }

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

    .page-promotions__hero-section {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .page-promotions__hero-content {
        max-width: 100%;
        padding: 30px;
    }

    .page-promotions__hero-image-wrapper {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .page-promotions__section {
        padding: 40px 0;
    }

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

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

    .page-promotions__intro-description,
    .page-promotions__text-block,
    .page-promotions__feature-description,
    .page-promotions__promo-description,
    .page-promotions__step-item p,
    .page-promotions__terms-item p,
    .page-promotions__faq-answer p {
        font-size: 1em;
    }

    .page-promotions__cta-button {
        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;
        margin: 10px 0;
    }

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

    .page-promotions__hero-image-wrapper {
        padding: 0;
    }

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

    /* Video responsiveness */
    .page-promotions video,
    .page-promotions__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Content containers responsiveness */
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__feature-grid,
    .page-promotions__promo-grid,
    .page-promotions__claim-steps,
    .page-promotions__terms-list,
    .page-promotions__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-promotions__faq-answer {
        padding: 0 20px;
    }

    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 10px 20px;
    }
    .page-promotions__hero-section {
        padding-top: var(--header-offset, 120px) !important;
    }
}