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

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #E5A007; /* Auxiliary color for highlight */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

/* General Section Styling */
.page-promotions__section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--dark-bg); /* Default to dark background */
    color: #ffffff;
}

.page-promotions__dark-bg {
    background-color: #0A2463; /* Main brand color for dark sections */
    color: #ffffff;
}

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

.page-promotions__heading {
    font-size: 2.8em;
    color: #E5A007;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions__heading--white {
    color: #ffffff;
}

.page-promotions__text-block {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__text-block--white {
    color: #ffffff;
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    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;
    cursor: pointer;
    box-sizing: border-box; /* Crucial for button responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure button does not overflow */
}

.page-promotions__btn-primary {
    background-color: #E5A007; /* Auxiliary color for primary action */
    color: #0A2463; /* Dark blue text for contrast */
    border: 2px solid #E5A007;
}

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

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

.page-promotions__btn-secondary:hover {
    background-color: #E5A007;
    color: #0A2463;
}

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

.page-promotions__feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease;
}

.page-promotions__feature-item:hover {
    transform: translateY(-10px);
}

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

.page-promotions__feature-description {
    color: #f0f0f0;
    font-size: 1em;
}

/* Promotion Grid (Cards) */
.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: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.page-promotions__promo-description {
    color: #f0f0f0;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* How-To-Claim Steps */
.page-promotions__steps-list {
    list-style: none;
    counter-reset: step-counter;
    text-align: left;
    max-width: 800px;
    margin: 50px auto 0 auto;
}

.page-promotions__step-item {
    position: relative;
    padding: 20px 0 20px 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__step-item:last-child {
    border-bottom: none;
}

.page-promotions__step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #E5A007;
    color: #0A2463;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

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

.page-promotions__step-description {
    color: #f0f0f0;
    font-size: 1em;
}

.page-promotions__step-description a {
    color: #E5A007;
    text-decoration: underline;
}

.page-promotions__step-description a:hover {
    color: #ffb700;
}

/* Terms and Conditions Grid */
.page-promotions__terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions__term-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
}

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

.page-promotions__term-description {
    color: #f0f0f0;
    font-size: 1em;
}

.page-promotions__cta-center {
    margin-top: 50px;
}

/* FAQ Section */
.page-promotions__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.page-promotions__faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #0A2463; /* Main brand color */
    color: #E5A007;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

.page-promotions__faq-question h3 {
    margin: 0;
    color: inherit;
}

.page-promotions__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.03);
    color: #f0f0f0;
}

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

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

/* Bottom CTA Section */
.page-promotions__cta-bottom-content {
    max-width: 800px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__heading {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    /* General mobile adaptations */
    .page-promotions__section {
        padding: 60px 15px;
    }
    .page-promotions__hero-section {
        height: 70vh;
        padding-top: var(--header-offset, 120px) !important; /* Ensure content is not hidden by fixed header */
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__heading {
        font-size: 1.8em;
    }
    .page-promotions__text-block {
        font-size: 0.95em;
    }
    .page-promotions__feature-grid,
    .page-promotions__promo-grid,
    .page-promotions__terms-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__promo-image {
        height: 200px;
    }
    .page-promotions__promo-title {
        font-size: 1.5em;
    }
    .page-promotions__step-item {
        padding-left: 60px;
    }
    .page-promotions__step-item::before {
        width: 40px;
        height: 40px;
        font-size: 1.3em;
    }
    .page-promotions__step-title {
        font-size: 1.3em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions__faq-toggle {
        font-size: 1.5em;
    }
    .page-promotions__faq-answer {
        padding: 15px 20px;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    
    /* Mobile image and container responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions__section,
    .page-promotions__container,
    .page-promotions__promo-card,
    .page-promotions__feature-item,
    .page-promotions__term-item,
    .page-promotions__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Specific overrides for hero to prevent double padding if already handled by section */
    .page-promotions__hero-section .page-promotions__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__cta-bottom-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Ensure images meet minimum size requirements for content areas */
.page-promotions img {
    min-width: 200px;
    min-height: 200px;
    filter: none; /* Ensure no filter is applied to images */
}

/* Overrides for shared.css */
.page-promotions a {
    color: #E5A007;
}

.page-promotions a:hover {
    color: #ffb700;
}

.page-promotions__content-area, .page-promotions__text-block {
    color: #f0f0f0; /* Light text for dark background */
}