.page-promotions {
    background-color: #F4F7FB;
    color: #1F2D3D;
}

.page-promotions__hero-section {
    position: relative;
    max-width: 1390px;
    margin: 0 auto 40px auto;
    padding: 10px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: cover;
    max-height: 675px; /* Limit height for hero image */
}

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

.page-promotions__hero-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    font-size: clamp(2rem, 4vw, 3rem); /* Use clamp for H1 */
}

.page-promotions__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

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

.page-promotions__hero-button:hover,
.page-promotions__card-button:hover,
.page-promotions__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-promotions__promotions-grid-section,
.page-promotions__faq-section,
.page-promotions__cta-section {
    max-width: 1390px;
    margin: 0 auto 40px auto;
    padding: 20px;
    background-color: #FFFFFF; /* Card B G */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

.page-promotions__promotion-card {
    background-color: #F4F7FB; /* Background color for card content */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    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 consistent card image display */
    object-fit: cover;
    display: block;
}

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

.page-promotions__card-title {
    font-size: 1.4rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

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

.page-promotions__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-promotions__faq-item {
    background-color: #F4F7FB; /* Background color */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    padding: 20px;
}

.page-promotions__faq-question {
    font-size: 1.15rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__faq-answer {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    line-height: 1.6;
}

.page-promotions__cta-section {
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 0; /* Remove bottom margin for the last section */
}

.page-promotions__cta-description {
    font-size: 1.1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 10px 15px 30px 15px;
    }

    .page-promotions__hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .page-promotions__hero-description {
        font-size: 1rem;
    }

    .page-promotions__hero-button,
    .page-promotions__card-button,
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

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

    .page-promotions__section-title,
    .page-promotions__cta-title {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
        margin-bottom: 30px;
    }

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

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

    .page-promotions__card-description {
        font-size: 0.95rem;
    }

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

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

    .page-promotions__promotions-grid-section,
    .page-promotions__faq-section,
    .page-promotions__cta-section {
        padding: 15px;
    }

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

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

    /* Enforce min-width for images in content area */
    .page-promotions img {
        max-width: 100%;
        height: auto; /* Ensure images scale down without overflowing */
        min-width: 200px; /* Explicitly set minimum width */
        min-height: 200px; /* Explicitly set minimum height */
    }
    .page-promotions__card-image {
        min-width: unset;
        min-height: unset;
    }
}

/* Ensure content area images (excluding specific card images that have fixed height) are not smaller than 200px */
.page-promotions__hero-image {
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__promotion-card .page-promotions__card-image {
    /* Card images have a fixed height, but still need to ensure min width */
    min-width: 200px;
}

.page-promotions__promotions-grid-section img,
.page-promotions__faq-section img,
.page-promotions__cta-section img {
    min-width: 200px;
    min-height: 200px;
}