.page-promotions {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --bg-color: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
}

.page-promotions__hero-section {
    background-color: var(--bg-color);
    padding-top: 10px;
    padding-bottom: 40px;
    color: var(--text-main);
    text-align: center;
    overflow: hidden;
}

.page-promotions__hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-text-area {
    max-width: 900px;
}

.page-promotions__main-title {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px var(--glow-color);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.page-promotions__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-main);
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #1A1A1A;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
    border: none;
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
    color: #000;
}

.page-promotions__promotions-grid-section,
.page-promotions__how-to-claim-section,
.page-promotions__why-choose-section,
.page-promotions__final-cta {
    background-color: var(--bg-color);
    padding: 60px 20px;
    color: var(--text-main);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions__section-title {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-promotions__section-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-main);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__promo-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px var(--primary-color);
}

.page-promotions__promo-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-promotions__promo-card-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__promo-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__promo-card-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #1A1A1A;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
}

.page-promotions__promo-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
    color: #000;
}

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

.page-promotions__step-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
}

.page-promotions__step-icon {
    width: 250px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions__step-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__step-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 20px;
}

.page-promotions__step-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #1A1A1A;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
}

.page-promotions__step-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
    color: #000;
}

.page-promotions__feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-promotions__feature-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-promotions__feature-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
}

.page-promotions__final-cta {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .page-promotions__main-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .page-promotions__promo-cards-container,
    .page-promotions__steps-container,
    .page-promotions__feature-list {
        grid-template-columns: 1fr;
    }

    .page-promotions__hero-image,
    .page-promotions__promo-image,
    .page-promotions__step-icon {
        max-width: 100%;
        height: auto;
    }

    .page-promotions__hero-section,
    .page-promotions__promotions-grid-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__why-choose-section,
    .page-promotions__final-cta {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__promo-card-title,
    .page-promotions__step-title,
    .page-promotions__feature-title {
        font-size: 1.5rem;
    }

    .page-promotions__description,
    .page-promotions__section-description,
    .page-promotions__promo-card-text,
    .page-promotions__step-text,
    .page-promotions__feature-text {
        font-size: 0.9rem;
    }

    .page-promotions__cta-button,
    .page-promotions__promo-card-button,
    .page-promotions__step-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

.page-promotions__hero-section img,
.page-promotions__promotions-grid-section img,
.page-promotions__how-to-claim-section img,
.page-promotions__why-choose-section img,
.page-promotions__cta-section img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .page-promotions__hero-section img,
    .page-promotions__promotions-grid-section img,
    .page-promotions__how-to-claim-section img,
    .page-promotions__why-choose-section img,
    .page-promotions__cta-section img {
        max-width: 100% !important;
        height: auto !important;
    }
}