.page-promotions {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promotions__hero-section {
    position: relative;
    max-width: 1390px; /* Boxed feel */
    margin: 10px auto 40px auto; /* Small top margin, larger bottom */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Fallback for content background */
}

.page-promotions__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size for display */
    min-height: 200px;
}

.page-promotions__hero-content {
    padding: 40px;
    text-align: center;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    color: #FFFFFF; /* White text on blue background */
}

.page-promotions__main-title {
    /* No fixed font-size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    max-width: 90%; /* Constraint width */
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-title {
    text-align: center;
    font-size: 2.2em;
    font-weight: 700;
    margin: 60px 0 40px 0;
    color: #1F2D3D; /* Text Main */
}

.page-promotions__promotions-list,
.page-promotions__terms-section,
.page-promotions__faq-section {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

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

.page-promotions__promotion-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency, object-fit will manage */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce minimum size for display */
    min-height: 200px;
}

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

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

.page-promotions__card-text {
    font-size: 0.95em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s ease-in-out;
    align-self: flex-start; /* Align button to start */
}

.page-promotions__card-button:hover {
    opacity: 0.9;
}

.page-promotions__terms-content {
    background-color: #FFFFFF; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: #1F2D3D; /* Text Main */
}

.page-promotions__terms-content p {
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-promotions__terms-list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 25px;
}

.page-promotions__terms-list li {
    margin-bottom: 10px;
}

.page-promotions__read-more-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease-in-out;
}

.page-promotions__read-more-button:hover {
    opacity: 0.9;
}

.page-promotions__faq-section {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.page-promotions__faq-item {
    background-color: #FFFFFF; /* Card BG */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-promotions__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000; /* Custom Color_1776249996415 */
    cursor: pointer; /* Indicate it's clickable */
}

.page-promotions__faq-answer {
    font-size: 1em;
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-promotions__faq-question.active + .page-promotions__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
}

/* Ensure no CSS filters are applied to images */
.page-promotions img {
    filter: none !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__hero-content {
        padding: 30px;
    }

    .page-promotions__main-title {
        font-size: 2.5em;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        margin: 10px auto 30px auto;
        border-radius: 0; /* Full width on mobile */
    }

    .page-promotions__hero-content {
        padding: 25px 15px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8em, 5vw, 2.2em); /* Use clamp for H1 on mobile */
    }

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

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

    .page-promotions__section-title {
        font-size: 1.6em;
        margin: 40px 0 30px 0;
    }

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

    .page-promotions__grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

    .page-promotions__card-image {
        height: 180px; /* Adjust card image height */
    }

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

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

    .page-promotions__terms-content,
    .page-promotions__faq-item {
        padding: 20px;
    }

    .page-promotions__terms-list {
        margin-left: 20px;
    }

    /* Ensure images in content sections are responsive and not too small */
    .page-promotions img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px; /* Ensure minimum size is maintained on display */
        min-height: 200px;
    }
}