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

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

/* Hero Section */
.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding as body handles header offset */
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height to maintain aspect ratio */
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Hero image should also respect min-width */
    min-height: 200px;
}

.page-promotions__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    position: relative; /* Ensure content is above any background elements */
    z-index: 2; /* Ensure text is not under the image if any layering issue */
}

.page-promotions__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Example clamp for responsive H1 */
}

.page-promotions__description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #D6E2FF; /* Border color, light blue for text */
}

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

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

/* Section Titles */
.page-promotions__section-title {
    font-size: 2.2rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin: 60px 0 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #6FA3FF; /* Accent color */
    border-radius: 2px;
}

/* Featured Promotions */
.page-promotions__featured-promotions {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background */
}

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

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

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

.page-promotions__card-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency, will be object-fit cover */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Ensure card images are at least 200px wide if their container allows */
    min-height: 200px; /* Ensure card images are at least 200px high */
}

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

.page-promotions__card-title {
    font-size: 1.4rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-promotions__card-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Align button to start */
}

.page-promotions__card-button:hover {
    opacity: 0.9;
}

/* All Promotions List */
.page-promotions__all-promotions {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG */
}

.page-promotions__promotion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-promotions__list-item {
    background-color: #F4F7FB; /* Background */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.page-promotions__list-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__list-item-title {
    font-size: 1.3rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__list-item-text {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
}

.page-promotions__list-item-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-promotions__list-item-link:hover {
    opacity: 0.9;
}

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

.page-promotions__view-all-button {
    display: inline-block;
    padding: 15px 35px;
    background: #6FA3FF; /* Accent color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.page-promotions__view-all-button:hover {
    background-color: #2F6BFF; /* Main color */
}

/* Call to Action Section */
.page-promotions__cta-section {
    background-color: #2F6BFF; /* Main color */
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
}

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

.page-promotions__cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #D6E2FF; /* Border color, light blue for text */
}

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promotions__cta-main-button,
.page-promotions__cta-secondary-button {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.15rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__cta-main-button {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__cta-secondary-button {
    background-color: #6FA3FF; /* Accent color */
    color: #FFFFFF;
    border: 2px solid #6FA3FF;
}

.page-promotions__cta-secondary-button:hover {
    background-color: #2F6BFF; /* Main color */
    border-color: #2F6BFF;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .page-promotions__container {
        padding: 15px;
    }

    .page-promotions__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-promotions__section-title {
        font-size: 1.8rem;
        margin: 40px 0 30px;
    }

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

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

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

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

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

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__cta-main-button,
    .page-promotions__cta-secondary-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 15px 20px;
    }

    /* Ensure all images are responsive */
    .page-promotions__hero-image,
    .page-promotions__card-image {
        max-width: 100%;
        height: auto;
    }
    /* Any other images within .page-promotions should also be responsive */
    .page-promotions__all-promotions img, .page-promotions__container img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure all content area images meet minimum size requirements */
.page-promotions img {
    filter: none !important; /* Ensure no CSS filter is applied to images */
}

/* Specific min-size rules for content images, if they are not hero/card-image */
.page-promotions__all-promotions img, .page-promotions__container img:not(.page-promotions__hero-image):not(.page-promotions__card-image) {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}