:root {
    --primary-color: #0A2647; /* Deep Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f8f8f8;
    --background-dark: #0A2647;
    --border-color: #e0e0e0;
    --header-offset: 120px; /* Default value, will be overridden by shared.css */
}

/* Base styles for the page content */
.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Default text color for light backgrounds */
    background-color: var(--background-light); /* Default light background */
}

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

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

.page-promotions__section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions__section-description {
    font-size: 18px;
    color: var(--text-color-dark);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* HERO Section */
.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: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3c61 100%); /* Dark gradient background */
    color: var(--text-color-light);
}

.page-promotions__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above any potential background effects */
}

.page-promotions__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-promotions__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    filter: none; /* Ensure no CSS filters are applied */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-promotions__main-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color-light);
    font-weight: 700;
    line-height: 1.1;
}

.page-promotions__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-color-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color); /* Gold button with dark blue text */
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
    background: #ffc700; /* Slightly lighter gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Promotion Types Section */
.page-promotions__promotion-types {
    background-color: var(--background-light);
    color: var(--text-color-dark);
}

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

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

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

.page-promotions__card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure responsiveness */
    display: block;
    filter: none; /* Ensure no CSS filters are applied */
}

.page-promotions__card-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: var(--secondary-color);
}

.page-promotions__card-text {
    font-size: 16px;
    color: var(--text-color-dark);
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes button to bottom */
}

.page-promotions__btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.page-promotions__btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Dark Background Section */
.page-promotions__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-promotions__dark-bg .page-promotions__section-title {
    color: var(--secondary-color);
}

.page-promotions__dark-bg .page-promotions__section-description {
    color: var(--text-color-light);
}

.page-promotions__feature-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 900px;
    text-align: left;
}

.page-promotions__feature-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-color-light);
}

.page-promotions__feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.page-promotions__button-group {
    margin-top: 40px;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
    background-color: #ffffff;
}

.page-promotions__step-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 900px;
    text-align: left;
    counter-reset: step-counter;
}

.page-promotions__step-list li {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    color: var(--text-color-dark);
}

.page-promotions__step-list li strong {
    color: var(--primary-color);
}

.page-promotions__step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
}

/* Terms & Conditions Section */
.page-promotions__terms-conditions {
    background-color: #f0f4f8; /* Light blue-gray for contrast */
    color: var(--text-color-dark);
}

.page-promotions__terms-conditions .page-promotions__section-title {
    color: var(--primary-color);
}

.page-promotions__terms-conditions .page-promotions__section-description {
    color: var(--text-color-dark);
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 900px;
    text-align: left;
}

.page-promotions__terms-list li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-color-dark);
}

.page-promotions__terms-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
    top: -2px;
}

.page-promotions__terms-conditions a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions__terms-conditions a:hover {
    color: var(--secondary-color);
}

/* FAQ Section */
.page-promotions__faq-area {
    background-color: var(--primary-color); /* Dark blue background for FAQ */
    color: var(--text-color-light);
}

.page-promotions__faq-area .page-promotions__section-title {
    color: var(--secondary-color);
}

.page-promotions__faq-area .page-promotions__section-description {
    color: var(--text-color-light);
}

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

.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-promotions__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-promotions__faq-question:active {
    background: #eeeeee;
}

.page-promotions__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color); /* Dark blue question text on light background */
}

.page-promotions__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
    color: var(--secondary-color);
    transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    background: #f9f9f9;
    color: var(--text-color-dark);
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    border-radius: 0 0 5px 5px;
}

.page-promotions__faq-answer p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Bottom CTA Section */
.page-promotions__cta-bottom {
    background-color: var(--background-light);
    padding-bottom: 80px;
}

.page-promotions__center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 40px;
    }
    .page-promotions__section-title {
        font-size: 30px;
    }
    .page-promotions__hero-description,
    .page-promotions__section-description {
        font-size: 17px;
    }
    .page-promotions__cta-button {
        font-size: 18px;
        padding: 12px 30px;
    }
    .page-promotions__card-grid {
        gap: 20px;
    }
    .page-promotions__card img {
        
    }
    .page-promotions__card-title {
        font-size: 20px;
    }
    .page-promotions__card-text {
        font-size: 15px;
    }
    .page-promotions__btn-secondary {
        font-size: 15px;
        padding: 8px 20px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-promotions__hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .page-promotions__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        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 0;
    }
    .page-promotions__section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .page-promotions__section-description {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 15px; /* Add padding to descriptions on mobile */
    }

    .page-promotions__container {
        padding: 0 15px;
    }

    .page-promotions__card-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-promotions__card {
        padding: 20px;
    }
    .page-promotions__card img {
        
        border-radius: 6px;
    }
    .page-promotions__card-title {
        font-size: 18px;
    }
    .page-promotions__card-text {
        font-size: 14px;
    }
    .page-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        font-size: 15px;
        padding: 10px 20px;
    }
    .page-promotions__feature-list,
    .page-promotions__step-list,
    .page-promotions__terms-list,
    .page-promotions__faq-list {
        margin-top: 30px;
        padding-left: 0; /* Remove default list padding */
    }
    .page-promotions__feature-list li,
    .page-promotions__step-list li,
    .page-promotions__terms-list li {
        font-size: 15px;
        margin-bottom: 10px;
        padding-left: 25px;
    }
    .page-promotions__step-list li::before {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    /* FAQ Mobile */
    .page-promotions__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-promotions__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-promotions__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-promotions__faq-answer {
        padding: 0 15px;
    }
    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 15px !important;
    }

    /* Image responsiveness for all img tags within page-promotions */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__button-group {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Padding handled by .page-promotions__container for sections */
    }

    .page-promotions__button-group {
        display: flex;
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 15px;
        padding: 0 15px;
    }
}

/* Ensure no CSS filters on images */
.page-promotions img {
    filter: none; /* Explicitly prevent any filters */
}