:root {
    --main-color: #2F6BFF;
    --auxiliary-color: #6FA3FF;
    --button-color: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg-color: #FFFFFF;
    --background-color: #F4F7FB;
    --text-main-color: #1F2D3D;
    --custom-color-1776249996415: #000000; /* Used for headings and strong text */
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

.page-promotions {
    font-family: Arial, sans-serif;
    color: var(--text-main-color); /* #1F2D3D */
    background-color: var(--background-color); /* #F4F7FB */
    padding-bottom: 40px; /* Ensure some space at the bottom */
}

/* Header offset handled by body in shared.css, so main content starts with small top padding */
.page-promotions__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    background-color: #0a0909; /* Dark background for hero section */
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensure no overflow */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width of hero image */
    margin-bottom: 20px; /* Space between image and content */
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Minimum size requirement */
}

.page-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: #FFFFFF; /* White text on dark background */
}

.page-promotions__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-promotions__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: var(--button-color); /* linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%) */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Ensure button is not too small */
}

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

.page-promotions__section-title {
    text-align: center;
    font-size: 2.2em;
    color: var(--text-main-color); /* #1F2D3D */
    margin-top: 60px;
    margin-bottom: 40px;
    font-weight: bold;
}

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

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

.page-promotions__card {
    background-color: var(--card-bg-color); /* #FFFFFF */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color); /* #D6E2FF */
}

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

.page-promotions__card-image {
    width: 100%;
    height: 225px; /* Fixed height for card images to maintain aspect ratio */
    object-fit: cover;
    display: block;
    min-height: 200px; /* Minimum size requirement */
}

.page-promotions__card-content {
    padding: 25px;
}

.page-promotions__card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--custom-color-1776249996415); /* #000000 */
}

.page-promotions__card-title a {
    color: var(--custom-color-1776249996415); /* #000000 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: var(--main-color); /* #2F6BFF */
}

.page-promotions__card-text {
    font-size: 0.95em;
    line-height: 1.5;
    color: var(--text-main-color); /* #1F2D3D */
    margin-bottom: 15px;
}

.page-promotions__card-link {
    display: inline-block;
    color: var(--main-color); /* #2F6BFF */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__card-link:hover {
    color: var(--auxiliary-color); /* #6FA3FF */
}

.page-promotions__cta-section {
    background-color: var(--main-color); /* #2F6BFF */
    color: #FFFFFF;
    padding: 60px 20px;
    margin-top: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions__cta-content {
    max-width: 800px;
    margin-bottom: 30px;
}

.page-promotions__cta-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-promotions__cta-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-promotions__cta-button--large {
    padding: 18px 40px;
    font-size: 1.1em;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Same as primary button */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-image-wrapper {
    width: 100%;
    max-width: 600px; /* Constrain image width */
    margin-top: 30px;
}

.page-promotions__cta-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    min-height: 200px; /* Minimum size requirement */
}

.page-promotions__faq-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-promotions__faq-item {
    background-color: var(--card-bg-color); /* #FFFFFF */
    border: 1px solid var(--border-color); /* #D6E2FF */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
    font-size: 1.2em;
    color: var(--custom-color-1776249996415); /* #000000 */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-main-color); /* #1F2D3D */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-bottom: 30px;
    }

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

    .page-promotions__description {
        font-size: 1em;
    }

    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

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

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

    .page-promotions__card-image {
        height: 180px;
    }

    .page-promotions__card-title {
        font-size: 1.2em;
    }

    .page-promotions__cta-section {
        padding: 40px 15px;
    }

    .page-promotions__cta-title {
        font-size: 2em;
    }

    .page-promotions__cta-description {
        font-size: 1em;
    }

    .page-promotions__cta-button--large {
        padding: 15px 30px;
        font-size: 1em;
    }

    .page-promotions__faq-section {
        margin: 40px auto;
    }

    .page-promotions__faq-question {
        font-size: 1.1em;
    }

    /* Images within content area must be responsive */
    .page-promotions__offers-list img,
    .page-promotions__cta-section img,
    .page-promotions__hero-section img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure color contrast */
.page-promotions__hero-content .page-promotions__main-title,
.page-promotions__hero-content .page-promotions__description,
.page-promotions__hero-content .page-promotions__cta-button {
    color: #FFFFFF; /* Explicitly ensure white text on dark background for hero */
}

.page-promotions__card-title a,
.page-promotions__faq-question {
    color: var(--custom-color-1776249996415); /* #000000 */
}