.page-promotions {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promotions__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #2F6BFF; /* Primary color for hero background */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

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

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-promotions__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #D6E2FF; /* Lighter text for description */
}

.page-promotions__hero-cta-button,
.page-promotions__card-button,
.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__hero-cta-button:hover,
.page-promotions__card-button:hover,
.page-promotions__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Invert gradient or slightly darker */
    transform: translateY(-2px);
}

.page-promotions__promotions-grid-section,
.page-promotions__terms-section,
.page-promotions__cta-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.page-promotions__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #1F2D3D;
}

.page-promotions__section-description,
.page-promotions__terms-intro,
.page-promotions__cta-description {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #1F2D3D;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__promotion-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-image-wrapper {
    width: 100%;
    height: 200px; /* Fixed height for consistent card images */
    overflow: hidden;
    border-bottom: 1px solid #D6E2FF;
}

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

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

.page-promotions__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-promotions__card-title a {
    color: #1F2D3D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: #2F6BFF;
}

.page-promotions__card-description {
    font-size: 0.95rem;
    color: #1F2D3D; /* Use Text Main */
    margin-bottom: 20px;
    min-height: 60px; /* Ensure consistent height */
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-promotions__terms-item {
    background-color: #FFFFFF;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #D6E2FF;
    color: #1F2D3D;
    font-size: 0.95rem;
}

.page-promotions__terms-link {
    display: inline-block;
    margin-top: 20px;
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__terms-link:hover {
    color: #6FA3FF;
    text-decoration: underline;
}

.page-promotions__cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000; /* Custom Color_1776249996415 */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .page-promotions__main-title {
        font-size: 2rem;
    }

    .page-promotions__hero-description {
        font-size: 1rem;
    }

    .page-promotions__hero-cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .page-promotions__promotions-grid-section,
    .page-promotions__terms-section,
    .page-promotions__cta-section {
        margin: 30px auto;
        padding: 0 15px;
    }

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

    .page-promotions__section-description,
    .page-promotions__terms-intro,
    .page-promotions__cta-description {
        font-size: 0.9rem;
    }

    .page-promotions__promotions-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

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

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

    .page-promotions__card-description {
        font-size: 0.9rem;
    }

    .page-promotions__terms-item {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* Ensure all images within .page-promotions are responsive */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}