.page-promotions {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
}

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

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 10px; /* Small top padding, main offset from body */
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    color: #FFFFFF;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

.page-promotions__hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.page-promotions__hero-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;
    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);
    min-width: 200px;
    text-align: center;
}

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

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

.page-promotions__categories {
    background-color: #F4F7FB;
    padding: 40px 0;
}

.page-promotions__category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.page-promotions__category-button {
    background-color: #D6E2FF;
    color: #2F6BFF;
    border: 1px solid #D6E2FF;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 120px;
}

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

.page-promotions__list {
    background-color: #F4F7FB;
    padding: 60px 0;
}

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

.page-promotions__card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

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

.page-promotions__card-title {
    font-size: 1.4rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.4;
    flex-grow: 1;
}

.page-promotions__card-title a {
    color: inherit;
    text-decoration: none;
}

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

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

.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;
    font-size: 0.95rem;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.page-promotions__card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__how-to-claim {
    background-color: #F4F7FB;
    padding: 60px 0;
}

.page-promotions__how-to-claim-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-promotions__how-to-claim-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__how-to-claim-steps {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-promotions__how-to-claim-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.page-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__how-to-claim-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-promotions__how-to-claim-step p a {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__how-to-claim-step p a:hover {
    text-decoration: underline;
}

.page-promotions__terms {
    background-color: #F4F7FB;
    padding: 60px 0 80px;
    text-align: center;
}

.page-promotions__terms-description {
    font-size: 1rem;
    color: #1F2D3D;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto 30px;
}

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

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

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-promotions__hero-content {
        padding: 30px 15px;
    }
    .page-promotions__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }
    .page-promotions__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .page-promotions__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-promotions__how-to-claim-content {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__how-to-claim-image {
        max-width: 100%;
        width: 100%; /* Ensure it fills container */
        margin-bottom: 30px;
    }
    .page-promotions__how-to-claim-steps {
        text-align: left;
    }
    .page-promotions__step-number {
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .page-promotions__container {
        padding: 10px 15px;
    }

    .page-promotions__hero-image,
    .page-promotions__card-image,
    .page-promotions__how-to-claim-image {
        max-width: 100%;
        height: auto;
    }

    .page-promotions__section-title {
        margin: 40px 0 30px;
    }

    .page-promotions__categories,
    .page-promotions__list,
    .page-promotions__how-to-claim,
    .page-promotions__terms {
        padding: 30px 0;
    }
}

@media (max-width: 549px) {
    .page-promotions__hero-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
    .page-promotions__hero-description {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
    }
    .page-promotions__category-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-promotions__category-button {
        width: 100%;
    }
    .page-promotions__card-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__card-image {
        height: 200px;
    }
    .page-promotions__card-title {
        font-size: 1.2rem;
    }
    .page-promotions__card-button {
        width: 100%;
    }
    .page-promotions__how-to-claim-step {
        flex-direction: row;
        align-items: flex-start;
    }
    .page-promotions__step-number {
        margin-top: 2px;
    }
}