.page-promotions {
    padding-top: 10px; /* Small top padding, body handles header offset */
    max-width: 1390px; /* Boxed layout */
    margin: 0 auto;
    color: #333333; /* Default text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promotions__hero-section {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    background-color: #f0f8ff; /* Light background for contrast */
    border-radius: 12px;
    overflow: hidden;
    padding: 20px; /* Padding around content */
}

.page-promotions__hero-section img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9; /* For 1920x1080 */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* H1 font-size with clamp */
    font-weight: 700;
    line-height: 1.2;
    color: #26A9E0; /* Main color */
    margin-bottom: 15px;
}

.page-promotions__hero-description {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 30px;
}

.page-promotions__cta-button {
    display: inline-block;
    background-color: #EA7C07; /* Login color for CTA */
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.page-promotions__cta-button:hover {
    background-color: #d46a06; /* Slightly darker orange on hover */
}

.page-promotions__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.page-promotions__list-section {
    margin-bottom: 40px;
    padding: 0 15px;
}

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

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

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

.page-promotions__promotion-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3; /* For 800x600 */
    object-fit: cover;
    filter: none; /* Ensure no filter applied */
}

.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: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: #1a7bb5;
}

.page-promotions__card-description {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 15px;
}

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

.page-promotions__card-cta {
    display: inline-block;
    background-color: #26A9E0;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-promotions__card-cta:hover {
    background-color: #1a7bb5;
}

.page-promotions__why-choose {
    background-color: #f9f9f9;
    padding: 40px 15px;
    margin-bottom: 40px;
    border-radius: 12px;
}

.page-promotions__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
}

.page-promotions__feature-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    filter: none; /* Ensure no filter applied */
}

.page-promotions__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 450px;
}

.page-promotions__benefits-list li {
    background-color: #FFFFFF;
    border-left: 4px solid #26A9E0;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    color: #444444;
}

.page-promotions__list-highlight {
    color: #26A9E0;
}

.page-promotions__faq-section {
    margin-bottom: 40px;
    padding: 0 15px;
}

.page-promotions__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promotions__faq-question {
    font-size: 1.15rem;
    color: #26A9E0;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-promotions__faq-answer {
    font-size: 1rem;
    color: #555555;
}

.page-promotions__cta-section {
    text-align: center;
    background-color: #26A9E0;
    color: #FFFFFF;
    padding: 50px 15px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.page-promotions__cta-section .page-promotions__section-title {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.page-promotions__cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button--large {
    padding: 16px 32px;
    font-size: 1.2rem;
    background-color: #EA7C07; /* Login color */
}

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

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

    .page-promotions__hero-section {
        padding: 15px;
        margin-bottom: 30px;
    }

    .page-promotions__hero-section img {
        margin-bottom: 15px;
    }

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

    .page-promotions__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .page-promotions__section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 25px;
    }

    .page-promotions__promotion-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
    }

    .page-promotions__why-choose {
        padding: 30px 15px;
    }

    .page-promotions__content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .page-promotions__feature-image {
        max-width: 100%;
    }

    .page-promotions__benefits-list li {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .page-promotions__faq-item {
        padding: 15px;
    }

    .page-promotions__faq-question {
        font-size: 1.05rem;
    }

    .page-promotions__faq-answer {
        font-size: 0.95rem;
    }

    .page-promotions__cta-section {
        padding: 40px 15px;
    }

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

    /* Ensure all images within .page-promotions are responsive and not smaller than 200px */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }

    /* Specific check for content area images to ensure they don't render too small */
    .page-promotions__promotion-card img,
    .page-promotions__feature-image {
        min-width: 200px; /* Conceptual for generation, CSS should handle responsiveness */
        min- /* Adjust based on aspect ratio */
    }
}

/* Ensure content area images don't get tiny on larger screens either */
.page-promotions__promotion-card img,
.page-promotions__feature-image {
    min-width: 200px; /* Applies to all screen sizes */
    min- /* For 4:3 aspect ratio, 200px width -> 150px height */
}

/* Color contrast check */
body {
    background-color: #FFFFFF; /* Ensures contrast with text */
}
.page-promotions {
    color: #333333; /* Dark text on light background */
}
.page-promotions__main-title,
.page-promotions__section-title,
.page-promotions__card-title a,
.page-promotions__list-highlight,
.page-promotions__faq-question {
    color: #26A9E0; /* Light blue on light background, needs good contrast */
}
.page-promotions__cta-button,
.page-promotions__card-cta,
.page-promotions__cta-button--large {
    background-color: #EA7C07; /* Orange on white text */
    color: #FFFFFF; /* White on orange, good contrast */
}
.page-promotions__cta-section {
    background-color: #26A9E0; /* Light blue background for CTA section */
    color: #FFFFFF; /* White text on light blue, good contrast */
}