.page-promotions {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-promotions__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

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

.page-promotions__hero-content {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin-top: 20px;
}

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

.page-promotions__intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #E5E5E5;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

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

.page-promotions__featured-promotions-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #F2C14E;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__section-description {
    font-size: 1rem;
    color: #E5E5E5;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__promotion-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-promotions__promotion-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__promotion-title {
    font-size: 1.5rem;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__promotion-description {
    font-size: 0.95rem;
    color: #CCC;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.page-promotions__card-button:hover {
    background: linear-gradient(180deg, #FFE082 0%, #F0B230 100%);
}

.page-promotions__view-all-wrapper {
    margin-top: 20px;
}

.page-promotions__view-all-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #F2C14E;
    color: #111111;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.page-promotions__view-all-button:hover {
    background-color: #FFD36B;
}

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

.page-promotions__step-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
    font-size: 1.3rem;
    color: #FFD36B;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__step-description {
    font-size: 0.95rem;
    color: #CCC;
}

.page-promotions__cta-wrapper {
    margin-top: 30px;
}

.page-promotions__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px 25px;
    text-align: left;
}

.page-promotions__faq-question {
    font-size: 1.2rem;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__faq-answer {
    font-size: 0.95rem;
    color: #E5E5E5;
}

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

    .page-promotions__main-title {
        font-size: 2rem;
    }

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

    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-promotions__featured-promotions-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__faq-section {
        padding: 30px 15px;
    }

    .page-promotions__section-title {
        font-size: 2rem;
    }

    .page-promotions__section-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

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

    .page-promotions__promotion-title {
        font-size: 1.3rem;
    }

    .page-promotions__promotion-description {
        font-size: 0.9rem;
    }

    .page-promotions__card-button {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

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

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

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

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

    .page-promotions__hero-image,
    .page-promotions__promotion-image {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Ensure content images don't overflow */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}