.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Added padding for mobile */
    box-sizing: border-box;
}

.page-promotions__hero-section {
    position: relative;
    background-color: #0a0909; /* Dark background to match 3WIN style, but ensure text contrast */
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    text-align: center;
    color: #FFFFFF;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 5; /* 1920x600 ratio */
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}

.page-promotions__hero-content {
    position: relative; /* Ensure content is above any potential background */
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem); /* Adjusted font size for h1 */
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
    color: #FFFFFF;
}

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

.page-promotions__cta-button {
    display: inline-block;
    background-color: #26A9E0; /* Main color */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__cta-button:hover {
    background-color: #1a7fb3; /* Darker shade of main color */
}

/* Promotions List Section */
.page-promotions__list-section {
    background-color: #FFFFFF; /* Auxiliary color for content section */
    padding: 60px 0;
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
}

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

.page-promotions__promotion-card {
    background-color: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
}

.page-promotions__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    filter: none; /* Ensure no grayscale */
}

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

.page-promotions__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: #26A9E0; /* Main color for titles */
}

.page-promotions__card-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333333;
    flex-grow: 1;
}

.page-promotions__card-date {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 15px;
    display: block;
}

.page-promotions__card-button {
    display: inline-block;
    background-color: #EA7C07; /* Login color for action buttons */
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-promotions__card-button:hover {
    background-color: #c76706; /* Darker shade of login color */
}

/* Info Section */
.page-promotions__info-section {
    background-color: #f0f0f0;
    padding: 60px 0;
    text-align: center;
}

.page-promotions__text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333333;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__terms-link {
    color: #26A9E0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-promotions__terms-link:hover {
    color: #1a7fb3;
    text-decoration: underline;
}

/* CTA Section */
.page-promotions__cta-section {
    background-color: #26A9E0; /* Main color */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-promotions__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-promotions__cta-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #FFFFFF;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2rem;
    background-color: #EA7C07; /* Login color for prominent CTA */
}

.page-promotions__cta-button--large:hover {
    background-color: #c76706;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

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

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

    .page-promotions__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .page-promotions__promotion-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }

    .page-promotions__card-image {
        height: 200px; /* Adjust height for mobile */
    }

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

    .page-promotions__text {
        font-size: 1rem;
    }

    .page-promotions__cta-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .page-promotions__cta-text {
        font-size: 1.1rem;
    }

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

    /* Ensure images in content area don't cause overflow */
    .page-promotions__promotion-card img,
    .page-promotions__hero-section img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 549px) {
    .page-promotions__hero-section,
    .page-promotions__list-section,
    .page-promotions__info-section,
    .page-promotions__cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}