.page-promotions {
    padding: 10px 15px 40px;
    max-width: 1390px;
    margin: 0 auto;
    color: #1F2D3D;
}

.page-promotions__hero-section {
    position: relative;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

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

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

.page-promotions__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
}

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

.page-promotions__section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.page-promotions__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #2F6BFF;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions__offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

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

.page-promotions__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions__offer-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

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

.page-promotions__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-promotions__card-text {
    font-size: 0.95rem;
    color: #1F2D3D;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__card-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly darker on hover */
}

.page-promotions__faq-section {
    background-color: #F4F7FB;
    padding: 40px 20px;
    border-radius: 12px;
}

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

.page-promotions__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

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

.page-promotions__faq-answer {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1F2D3D;
}

@media (max-width: 849px) {
    .page-promotions {
        padding: 10px 12px 30px;
    }

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

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

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

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

    .page-promotions__section-title {
        margin-bottom: 25px;
    }

    .page-promotions__offers-grid {
        gap: 20px;
    }

    .page-promotions__offer-card {
        margin-bottom: 0;
    }

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

    .page-promotions__card-text {
        font-size: 0.9rem;
    }

    .page-promotions__card-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .page-promotions__faq-section {
        padding: 30px 15px;
    }

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

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

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

@media (max-width: 549px) {
    .page-promotions__offers-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__offer-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-promotions__main-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }

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

    .page-promotions__section-title {
        font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    }

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

    .page-promotions__card-text {
        font-size: 0.85rem;
    }

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

/* Ensure all content area images meet min-size requirement */
.page-promotions img {
    min-width: 200px;
    min-height: 200px;
    max-width: 100%; /* Ensures responsiveness */
    height: auto; /* Ensures aspect ratio is maintained */
}

/* Specific override for hero image to ensure it's not smaller than 200px */
.page-promotions__hero-image {
    min-width: unset; /* Allow hero to be smaller than 200px height if aspect ratio dictates, but width remains 100% */
    min-height: unset;
}

/* Mobile content area images constraint */
@media (max-width: 768px) {
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}