.page-promotions {
    background-color: var(--page-promotions-bg, #F4F7FB);
    color: var(--page-promotions-text-main, #1F2D3D);
    font-family: Arial, sans-serif; /* Default font, can be refined */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding as per rules, body handles header offset */
}

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

.page-promotions__hero-section {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Using primary/secondary for hero background */
    color: #FFFFFF;
}

.page-promotions__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

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

.page-promotions__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
    /* No fixed font-size, rely on clamp if needed, otherwise relative units */
    font-size: clamp(2em, 4vw, 3em); /* Example clamp for responsiveness */
}

.page-promotions__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.page-promotions__intro-section,
.page-promotions__terms-section,
.page-promotions__faq-section {
    padding: 40px 0;
    text-align: center;
}

.page-promotions__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--page-promotions-text-main, #1F2D3D);
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-promotions__intro-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.05em;
    color: var(--page-promotions-custom-color-1776249996415, #000000);
}

.page-promotions__promotions-list {
    padding: 40px 0;
    background-color: var(--page-promotions-bg, #F4F7FB);
}

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

.page-promotions__promotion-card {
    background-color: var(--page-promotions-card-bg, #FFFFFF);
    border: 1px solid var(--page-promotions-border, #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__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-promotions__card-title {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--page-promotions-text-main, #1F2D3D);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: var(--page-promotions-custom-color-1776249996415, #000000);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-promotions__card-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-promotions__terms-intro,
.page-promotions__faq-answer {
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--page-promotions-custom-color-1776249996415, #000000);
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: left;
}

.page-promotions__terms-item {
    background-color: var(--page-promotions-card-bg, #FFFFFF);
    border: 1px solid var(--page-promotions-border, #D6E2FF);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--page-promotions-custom-color-1776249996415, #000000);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-promotions__read-more-button,
.page-promotions__support-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

.page-promotions__read-more-button:hover,
.page-promotions__support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-section {
    background-color: var(--page-promotions-card-bg, #FFFFFF);
}

.page-promotions__faq-item {
    background-color: var(--page-promotions-card-bg, #FFFFFF);
    border: 1px solid var(--page-promotions-border, #D6E2FF);
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px 25px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--page-promotions-text-main, #1F2D3D);
    margin-bottom: 10px;
    cursor: pointer;
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: var(--page-promotions-custom-color-1776249996415, #000000);
    margin-bottom: 0;
}


/* Responsive styles */
@media (max-width: 768px) {
    .page-promotions__container {
        padding: 15px;
    }

    .page-promotions__hero-section {
        padding-bottom: 20px;
    }

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

    .page-promotions__description {
        font-size: 1em;
    }

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

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

    .page-promotions__card-image {
        max-width: 100%;
        height: auto; /* Ensure responsiveness for card images */
        min-height: 200px;
    }

    .page-promotions__intro-text,
    .page-promotions__terms-intro,
    .page-promotions__faq-answer {
        font-size: 0.95em;
    }

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

    /* Ensure all images within .page-promotions are responsive */
    .page-promotions img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min width */
        min-height: 200px; /* Enforce min height */
    }
    .page-promotions__hero-image {
        min-width: unset; /* Hero image can be larger than 200px, but still responsive */
        min-height: unset;
    }
}

/* Ensure no horizontal scroll on mobile */
@media (max-width: 768px) {
    .page-promotions {
        overflow-x: hidden;
    }
    .page-promotions__container {
        width: 100%;
        box-sizing: border-box;
    }
}