.page-promotions__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    background-color: var(--background-color);
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-promotions__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--card-bg-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-50px); /* Lift slightly above the image for visual separation */
    z-index: 1;
    margin-bottom: -50px; /* Compensate for translateY */
}

.page-promotions__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main-color);
    margin-bottom: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    /* No fixed font-size for h1, rely on responsiveness */
}

.page-promotions__description {
    font-size: 1.1em;
    color: var(--text-main-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-color);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--glow-color);
}

.page-promotions__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--background-color);
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: var(--text-main-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.page-promotions__promo-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--glow-color);
}

.page-promotions__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    min-height: 200px; /* Ensure minimum size */
}

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

.page-promotions__card-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

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

.page-promotions__card-text {
    font-size: 0.95em;
    color: var(--text-main-color);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--button-color);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95em;
    text-align: center;
    transition: background 0.3s ease;
}

.page-promotions__card-button:hover {
    background: var(--primary-color);
}

.page-promotions__how-to-claim {
    background-color: var(--background-color);
    padding-bottom: 80px;
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-promotions__step-item {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: var(--text-main-color);
    margin-bottom: 10px;
}

.page-promotions__step-text {
    color: var(--text-main-color);
    line-height: 1.6;
}

.page-promotions__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-promotions__main-cta-button {
    display: inline-block;
    padding: 18px 35px;
    background: var(--button-color);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.page-promotions__main-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--glow-color);
}

.page-promotions__terms-conditions {
    background-color: #F4F7FB; /* Use background color for this section */
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-promotions__terms-text {
    font-size: 1em;
    color: var(--text-main-color);
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

.page-promotions__read-more-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-promotions__read-more-link:hover {
    color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__hero-content {
        padding: 30px 15px;
        transform: translateY(-30px);
        margin-bottom: -30px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em); /* Use clamp for h1 */
        margin-bottom: 15px;
    }

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

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

    .page-promotions__section {
        padding: 40px 15px;
    }

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

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

    .page-promotions__promo-card {
        margin-bottom: 20px;
    }

    .page-promotions__promo-image {
        height: 200px; /* Adjust height for mobile */
        min-height: 200px; /* Enforce minimum size */
    }

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

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

    .page-promotions__step-item {
        padding: 20px;
    }

    .page-promotions__step-title {
        font-size: 1.3em;
    }

    .page-promotions__main-cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }

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

@media (max-width: 480px) {
    .page-promotions__hero-content {
        padding: 20px 10px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
    }

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