.page-promotions {
    padding-top: 10px; /* Small top padding to avoid content touching header, body handles main offset */
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1390px;
    margin: 0 auto 40px auto;
    padding: 20px;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

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

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 2.8em);
    font-weight: bold;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-promotions__description {
    font-size: 1.1em;
    color: #1F2D3D;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
}

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

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.6);
}

.page-promotions__list-section {
    max-width: 1390px;
    margin: 0 auto 40px auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

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

.page-promotions__card {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
    border-bottom: 1px solid #D6E2FF;
}

.page-promotions__card-title {
    font-size: 1.4em;
    color: #000000;
    margin: 20px 15px 10px 15px;
    font-weight: bold;
}

.page-promotions__card-title a {
    color: #000000;
    text-decoration: none;
}

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

.page-promotions__card-description {
    font-size: 0.95em;
    color: #1F2D3D;
    margin: 0 15px 20px 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions__card-button:hover {
    background: #6FA3FF;
}

.page-promotions__cta-section {
    max-width: 1390px;
    margin: 0 auto 40px auto;
    padding: 40px 20px;
    background-color: #2F6BFF;
    color: #FFFFFF;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__cta-title {
    font-size: clamp(2em, 4vw, 3em);
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-promotions__cta-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button--large {
    padding: 18px 35px;
    font-size: 1.1em;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Re-using the primary button gradient for consistency */
    color: #FFFFFF;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button--large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-promotions {
        padding-top: 8px; /* Slightly less padding for mobile */
    }
    .page-promotions__hero-section {
        padding: 15px;
        margin-bottom: 30px;
    }
    .page-promotions__hero-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-promotions__description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-promotions__list-section {
        padding: 15px;
        margin-bottom: 30px;
    }
    .page-promotions__section-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
        margin-bottom: 25px;
    }
    .page-promotions__cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions__card-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-promotions__card-title {
        font-size: 1.2em;
        margin: 15px 10px 8px 10px;
    }
    .page-promotions__card-description {
        font-size: 0.9em;
        margin: 0 10px 15px 10px;
    }
    .page-promotions__card-button {
        padding: 8px 18px;
        font-size: 0.85em;
        margin-bottom: 15px;
    }
    .page-promotions__cta-section {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
    .page-promotions__cta-title {
        font-size: clamp(1.8em, 7vw, 2.8em);
    }
    .page-promotions__cta-description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-promotions__cta-button--large {
        padding: 15px 30px;
        font-size: 1em;
    }

    /* Ensure all content images in .page-promotions adhere to min size and responsive rules */
    .page-promotions img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size for all content images */
        min-height: 200px;
    }
}

/* General image rules to prevent small icons and maintain contrast */
.page-promotions img:not(.page-promotions__hero-image):not(.page-promotions__card-image) {
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow natural width or parent constraints */
    height: auto; /* Allow natural height or parent constraints */
}

/* Ensure no filter is applied to images */
.page-promotions img {
    filter: none; /* Explicitly remove any potential filter */
}

/* Content area image size enforcement */
.page-promotions img {
    width: auto; /* Default to auto to respect aspect ratio and max-width */
    height: auto;
    max-width: 100%; /* Ensure responsiveness */
}

/* Specific rule for content area images to ensure minimum display size */
.page-promotions__cards-grid img, .page-promotions__card-image {
    min-width: 200px;
    min-height: 200px;
    /* The width/height attributes on HTML img tag define the intrinsic aspect ratio, CSS then scales */
}

/* Text colors for contrast */
.page-promotions__main-title,
.page-promotions__section-title,
.page-promotions__card-title a,
.page-promotions__cta-title {
    color: #000000; /* Custom Color_1776249996415 */
}

.page-promotions__description,
.page-promotions__card-description,
.page-promotions__cta-description {
    color: #1F2D3D; /* Text Main */
}

.page-promotions__cta-section .page-promotions__cta-title,
.page-promotions__cta-section .page-promotions__cta-description {
    color: #FFFFFF; /* Ensure text is white on blue background */
}

.page-promotions__hero-section,
.page-promotions__list-section,
.page-promotions__card {
    background-color: #FFFFFF; /* Card BG */
}

.page-promotions__card {
    border-color: #D6E2FF; /* Border */
}

.page-promotions__cta-button,
.page-promotions__card-button,
.page-promotions__cta-button--large {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
}

.page-promotions__cta-button:hover,
.page-promotions__card-button:hover,
.page-promotions__cta-button--large:hover {
    box-shadow: 0 6px 15px #A5C4FF; /* Glow */
}