.page-promotions {
    padding-top: 10px;
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    text-align: center;
}

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

.page-promotions__hero-title {
    color: #FFD36B;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    max-width: 100%;
}

.page-promotions__hero-description {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #FFF6D6;
}

.page-promotions__hero-button,
.page-promotions__card-button,
.page-promotions__claim-button,
.page-promotions__cta-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    color: #0A0A0A;
    font-weight: bold;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.page-promotions__hero-button:hover,
.page-promotions__card-button:hover,
.page-promotions__claim-button:hover,
.page-promotions__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(242, 193, 78, 0.4);
}

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

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

.page-promotions__section-title {
    color: #F2C14E;
    text-align: center;
    margin: 40px 0 30px;
    font-size: 2.2em;
    font-weight: bold;
}

.page-promotions__promotions-list-section {
    padding: 20px;
}

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

.page-promotions__promotion-card {
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-promotions__card-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-promotions__card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__card-description {
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__how-to-claim-section {
    padding: 20px;
    text-align: center;
}

.page-promotions__steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__step-item {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
}

.page-promotions__step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 15px;
}

.page-promotions__step-title {
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: bold;
}

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

.page-promotions__how-to-claim-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
    object-fit: cover;
}

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

.page-promotions__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__faq-item {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    font-size: 1.15em;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-promotions__faq-answer {
    font-size: 0.95em;
    line-height: 1.6;
}

.page-promotions__cta-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #111111;
    margin-top: 40px;
    border-top: 1px solid #3A2A12;
}

.page-promotions__cta-title {
    color: #FFD36B;
    font-size: 2.5em;
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }

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

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

    .page-promotions__step-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .page-promotions__cta-title {
        font-size: 2em;
    }

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

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.6em;
    }

    .page-promotions__hero-description {
        font-size: 1em;
    }

    .page-promotions__hero-button,
    .page-promotions__card-button,
    .page-promotions__claim-button,
    .page-promotions__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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

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

    .page-promotions__cta-title {
        font-size: 1.8em;
    }
}