.page-promotions {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    padding-bottom: 40px;
    /* Rely on body for padding-top: var(--header-offset); */
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, not --header-offset */
    padding-bottom: 40px;
    background-color: #2F6BFF; /* Primary color for hero background */
    color: #FFFFFF; /* White text for contrast on blue background */
    overflow: hidden; /* Ensure no image overflow */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    margin-bottom: 20px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-promotions__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF; /* White text for contrast */
    margin-bottom: 15px;
    /* No fixed font-size, rely on clamp for responsiveness if needed, but not here */
}

.page-promotions__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0E0E0; /* Lighter white for description */
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min size for buttons */
    min-height: 48px; /* Enforce min size for buttons */
    line-height: 24px; /* Ensure text is vertically centered */
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%); /* Slightly lighter on hover */
}

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

.page-promotions__section--spacing {
    margin-top: 40px;
}

.page-promotions__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 20px;
}

.page-promotions__section-description {
    font-size: 1.1em;
    line-height: 1.7;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-promotions__card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border color */
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-promotions__card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page-promotions__card-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__card-text {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    text-align: center;
    transition: background 0.3s ease;
    align-self: flex-start; /* Align button to start */
    min-width: 150px; /* Enforce min size for buttons */
    min-height: 40px; /* Enforce min size for buttons */
    line-height: 20px; /* Ensure text is vertically centered */
}

.page-promotions__card-button:hover {
    background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%); /* Slightly lighter on hover */
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 40px auto;
    max-width: 800px;
}

.page-promotions__terms-item {
    font-size: 1.05em;
    line-height: 1.8;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.page-promotions__terms-item::before {
    content: '✅'; /* Using an emoji for list style */
    position: absolute;
    left: 0;
    color: #2F6BFF; /* Primary color for tick */
}

.page-promotions__read-more-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min size for buttons */
    min-height: 48px; /* Enforce min size for buttons */
    line-height: 24px; /* Ensure text is vertically centered */
}

.page-promotions__read-more-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%); /* Slightly lighter on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__hero-image {
        max-width: 100%;
        height: auto;
    }

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

    .page-promotions__main-title {
        font-size: clamp(2em, 7vw, 3em); /* Using clamp for h1 font size */
        margin-bottom: 10px;
    }

    .page-promotions__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

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

    .page-promotions__section-description {
        font-size: 0.95em;
    }

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

    .page-promotions__card-image {
        height: auto; /* Allow height to adjust */
        min-height: 200px; /* Still enforce min height */
    }

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

    .page-promotions__card-text {
        font-size: 0.9em;
    }

    .page-promotions__card-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .page-promotions__terms-item {
        font-size: 0.95em;
        padding-left: 20px;
    }

    /* Mobile image overflow prevention */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure all content area images are at least 200px */
.page-promotions img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon) {
    min-width: 200px;
    min-height: 200px;
}