.page-promotions__hero-section {
    background-color: #F4F7FB; /* Background color for the section */
    padding: 10px 0 40px; /* Small top padding, more at bottom */
    text-align: center;
    color: #1F2D3D;
}

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

.page-promotions__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1F2D3D;
    margin-bottom: 15px;
    /* No fixed font-size, relying on responsive clamp or default for H1 */
}

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

.page-promotions__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    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__featured-offers-section {
    background-color: #FFFFFF; /* Card BG for this section */
    padding: 60px 20px;
    color: #1F2D3D;
}

.page-promotions__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1F2D3D;
}

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

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

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

.page-promotions__offer-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency, will be responsive */
    object-fit: cover;
    display: block;
    /* Ensure image is not smaller than 200px */
    min-width: 200px; 
    min-height: 200px;
}

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

.page-promotions__offer-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-promotions__offer-title a {
    color: #000000; /* Custom Color_1776249996415 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__offer-title a:hover {
    color: #2F6BFF; /* Main color on hover */
}

.page-promotions__offer-description {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__offer-link {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    background: #2F6BFF; /* Main color */
    color: #FFFFFF;
    font-size: 0.95em;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-promotions__offer-link:hover {
    background-color: #6FA3FF; /* Auxiliary color on hover */
}

.page-promotions__faq-section {
    background-color: #F4F7FB; /* Background color */
    padding: 60px 20px;
    color: #1F2D3D;
}

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

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

.page-promotions__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    padding: 18px 25px;
    cursor: pointer;
    position: relative;
    color: #000000; /* Custom Color_1776249996415 */
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #2F6BFF;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-question::after {
    transform: rotate(45deg);
}

.page-promotions__faq-answer {
    padding: 0 25px 18px;
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-promotions__faq-answer p {
    margin-bottom: 10px;
}

.page-promotions__support-link {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-promotions__support-link:hover {
    color: #6FA3FF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 10px 0 30px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em); /* Using clamp for H1 as per rule */
        margin-bottom: 10px;
    }

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

    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions__featured-offers-section,
    .page-promotions__faq-section {
        padding: 40px 15px;
    }

    .page-promotions__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-promotions__offers-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-promotions__offer-image {
        /* Enforce minimum size for content images, but allow responsiveness */
        max-width: 100%;
        height: auto; /* Allow height to adjust */
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }

    .page-promotions__offer-content {
        padding: 20px;
    }

    .page-promotions__offer-title {
        font-size: 1.2em;
    }

    .page-promotions__offer-description {
        font-size: 0.95em;
    }

    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions__faq-answer {
        padding: 0 20px 15px;
    }

    /* Important: Mobile content area images must use max-width: 100%; height: auto; */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}

/* Enforce content area image size minimums */
.page-promotions__hero-image,
.page-promotions__offer-image {
    min-width: 200px;
    min-height: 200px;
}

/* CSS for content area images, ensuring they are not too small */
/* This rule applies to any img within .page-promotions, ensuring content images are large */
.page-promotions img:not(.shared-header__logo, .shared-footer__payment-icon, .shared-footer__social-icon, .shared-footer__game-provider-icon) {
    /* Ensure content images are not shrunk below 200px by CSS */
    /* This applies to the images in offer cards and hero */
    min-width: 200px;
    min-height: 200px;
    /* Use max-width for responsiveness, but don't force smaller fixed sizes */
    max-width: 100%;
    height: auto;
}

/* Specific override for offer images to ensure they scale correctly */
.page-promotions__offer-image {
    width: 100%; /* Ensure it takes full width of its container */
    height: auto; /* Let height adjust to maintain aspect ratio */
    object-fit: cover;
}

/* Ensure color contrast */
.page-promotions__main-title,
.page-promotions__description,
.page-promotions__section-title,
.page-promotions__offer-title a,
.page-promotions__offer-description,
.page-promotions__faq-question,
.page-promotions__faq-answer {
    /* These colors are already defined to ensure contrast with their backgrounds */
    /* #1F2D3D on #F4F7FB (light blue-grey) or #FFFFFF (white) is good contrast */
    /* #000000 on #FFFFFF is good contrast */
}