.page-promotions__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding for visual separation */
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-promotions__hero-content {
    position: absolute;
    text-align: center;
    color: #f5f5f5;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-promotions__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.page-promotions__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-promotions__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1rem;
}

.page-promotions__button--primary {
    background-color: #FFD700;
    color: #0d0d0d;
    border: 2px solid #FFD700;
}

.page-promotions__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions__button--secondary:hover {
    background-color: #FFD700;
    color: #0d0d0d;
    transform: translateY(-3px);
}

.page-promotions__promo-grid-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section,
.page-promotions__cta-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
    color: #e5e5e5;
    text-align: center;
    border-bottom: 1px solid #333;
}

.page-promotions__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-promotions__section-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

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

.page-promotions__promo-card {
    background-color: #0d0d0d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.page-promotions__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

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

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

.page-promotions__promo-card-title {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__promo-card-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__button--small {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 6px;
}

.page-promotions__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-promotions__step-card {
    background-color: #0d0d0d;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__step-title {
    font-size: 1.6rem;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__step-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__faq-item {
    background-color: #0d0d0d;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__faq-question {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    display: none;
    margin-top: 10px;
}

.page-promotions__faq-answer.active {
    display: block;
}

.page-promotions__cta-section {
    background-color: #8B0000;
    color: #f5f5f5;
    padding: 80px 20px;
}

.page-promotions__cta-section .page-promotions__section-title {
    color: #FFD700;
}

.page-promotions__cta-section .page-promotions__section-description {
    color: #e5e5e5;
    margin-bottom: 50px;
}

.page-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-promotions__cta-buttons .page-promotions__button--primary {
    background-color: #FFD700;
    color: #8B0000;
    border-color: #FFD700;
}

.page-promotions__cta-buttons .page-promotions__button--primary:hover {
    background-color: #e6c200;
    color: #8B0000;
}

.page-promotions__cta-buttons .page-promotions__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-promotions__cta-buttons .page-promotions__button--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
}

@media (max-width: 768px) {
    .page-promotions__hero-content {
        padding: 15px;
        max-width: 95%;
    }

    .page-promotions__hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

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

    .page-promotions__hero-buttons,
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

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

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

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

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

    .page-promotions__faq-answer {
        font-size: 0.9rem;
    }

    /* Mobile overflow prevention */
    .page-promotions__promo-grid-section img,
    .page-promotions__how-to-claim-section img,
    .page-promotions__faq-section img,
    .page-promotions__cta-section img,
    .page-promotions__promo-card-image {
        max-width: 100%;
        height: auto;
    }

    .page-promotions__promo-grid-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__faq-section,
    .page-promotions__cta-section {
        padding: 40px 15px;
    }
}