.page-promotions {
    background-color: #F4F7FB;
    color: #1F2D3D;
}

.page-promotions__hero-section {
    padding: 10px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #2F6BFF;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    margin-bottom: 20px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.page-promotions__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-promotions__hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 30px;
    line-height: 1.6;
    color: #E0E0E0;
}

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

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

.page-promotions__promo-list-section {
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1F2D3D;
}

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

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

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

.page-promotions__promo-image-wrapper {
    width: 100%;
    height: 225px;
    overflow: hidden;
}

.page-promotions__promo-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-promotions__promo-card-content {
    padding: 20px;
}

.page-promotions__promo-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

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

.page-promotions__promo-card-description {
    font-size: 0.95rem;
    color: #1F2D3D;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-promotions__promo-card-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.page-promotions__promo-card-button:hover {
    opacity: 0.9;
}

.page-promotions__terms-section, .page-promotions__faq-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.page-promotions__terms-description, .page-promotions__faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #1F2D3D;
    margin-bottom: 25px;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-promotions__terms-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #1F2D3D;
    line-height: 1.6;
}

.page-promotions__terms-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2F6BFF;
    font-weight: bold;
    font-size: 1.2rem;
    top: -2px;
}

.page-promotions__terms-link, .page-promotions__faq-link {
    display: inline-block;
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 2px solid #2F6BFF;
    padding-bottom: 2px;
}

.page-promotions__terms-link:hover, .page-promotions__faq-link:hover {
    color: #6FA3FF;
    border-color: #6FA3FF;
}

.page-promotions__faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #D6E2FF;
    padding-bottom: 20px;
}

.page-promotions__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-promotions__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

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

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

    .page-promotions__hero-description {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }

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

    .page-promotions__promo-list-section, .page-promotions__terms-section, .page-promotions__faq-section {
        padding: 40px 15px;
    }

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

    .page-promotions__promo-image-wrapper {
        height: 200px;
    }

    .page-promotions__promo-card-image {
        max-width: 100%;
        height: auto;
    }

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

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

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

@media (max-width: 480px) {
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}