.page-promotions__hero-section {
    position: relative;
    background-color: #26A9E0;
    color: #FFFFFF;
    padding-bottom: 40px;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    max-height: 500px; /* Limit height for hero image */
}

.page-promotions__hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    text-align: center;
}

.page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__intro-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

.page-promotions__cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #EA7C07, #ff5e3a);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px; /* Ensure button is large enough */
    min-height: 44px; /* Ensure button is touch-friendly */
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

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

.page-promotions__promotions-grid-section {
    background-color: #100224;
    padding: 60px 20px;
    color: #FFFFFF;
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFFFFF;
    background: linear-gradient(90deg, #26A9E0, #83a1f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.page-promotions__promotion-card {
    background-color: #1a0a33; /* Darker background for cards */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-promotions__promotion-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    object-position: center;
    display: block;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

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

.page-promotions__promotion-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-promotions__promotion-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    background-color: #83a1f2;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    min-width: 120px;
    min-height: 44px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

.page-promotions__card-button:hover {
    background-color: #688cec;
}

.page-promotions__faq-section {
    background-color: #100224;
    padding: 60px 20px;
    color: #FFFFFF;
}

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

.page-promotions__faq-item {
    background-color: #1a0a33;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 10px;
    cursor: pointer; /* Indicate interactivity */
}

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

/* Responsive styles */
@media (max-width: 849px) {
    .page-promotions__hero-image {
        max-height: 350px;
    }

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

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

    .page-promotions__cta-button {
        font-size: 1rem;
        padding: 12px 25px;
        width: 100%;
        max-width: 300px;
    }

    .page-promotions__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

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

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

    .page-promotions__promotion-description {
        font-size: 0.9rem;
    }

    .page-promotions__card-button {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

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

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

@media (max-width: 549px) {
    .page-promotions__hero-image {
        max-height: 250px;
    }
    .page-promotions__promotions-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__promotion-image {
        height: 180px;
        min-height: 180px; /* Adjust min-height for smaller screens if needed, but maintain >= 200px */
    }
    .page-promotions__promotions-grid-section, .page-promotions__faq-section {
        padding: 40px 15px;
    }
    .page-promotions__hero-content {
        padding: 15px 15px 0;
    }
    .page-promotions__main-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }
    .page-promotions__cta-button {
        max-width: 250px;
    }
}

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