.page-promotions {
    background-color: #F4F7FB;
    color: #1F2D3D;
    padding-top: 10px; /* Small top padding, relies on body padding-top from shared.css */
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    max-width: 1390px;
    margin: 0 auto 40px auto;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content if image is narrower than container */
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    /* No filter allowed */
}

.page-promotions__hero-content {
    padding: 30px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white background */
    width: 100%;
}

.page-promotions__main-title {
    font-weight: 700;
    line-height: 1.2;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__intro-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-promotions__section {
    width: 100%;
    max-width: 1390px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

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

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

.page-promotions__promotion-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF;
}

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

.page-promotions__promotion-image {
    width: 100%;
    height: 225px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    display: block;
    /* No filter allowed */
}

.page-promotions__card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 225px); /* Adjust height based on image height */
}

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

.page-promotions__card-title a {
    color: #1F2D3D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: #2F6BFF;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: #1F2D3D;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-promotions__card-date {
    font-size: 0.85em;
    color: #6FA3FF;
    margin-bottom: 15px;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__card-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-promotions__section--cta {
    text-align: center;
    background-color: #2F6BFF;
    color: #FFFFFF;
    padding: 60px 20px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.page-promotions__section--cta .page-promotions__section-title {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.page-promotions__cta-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button--large {
    padding: 18px 35px;
    font-size: 1.1em;
    border-radius: 10px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Re-use button gradient */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__section--faq {
    margin-bottom: 80px;
}

.page-promotions__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF;
}

.page-promotions__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 10px;
}

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

@media (max-width: 1024px) {
    .page-promotions__hero-section {
        margin-bottom: 30px;
    }

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

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

    .page-promotions__intro-text {
        font-size: 1em;
    }

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

    .page-promotions__section {
        margin-bottom: 40px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        border-radius: 0;
        margin-bottom: 25px;
    }

    .page-promotions__hero-image {
        height: auto; /* Allow image height to be flexible */
    }

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

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

    .page-promotions__intro-text {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

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

    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-promotions__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__promotion-image {
        height: 200px; /* Ensure minimum height */
        max-width: 100%;
    }

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

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

    .page-promotions__card-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .page-promotions__section--cta {
        padding: 40px 15px;
        margin-bottom: 40px;
        border-radius: 8px;
    }

    .page-promotions__cta-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-promotions__cta-button--large {
        padding: 15px 30px;
        font-size: 1em;
    }

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

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

    /* Ensure all content area images are responsive */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: clamp(1.6em, 6vw, 2em);
    }

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

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