.page-promotions {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --background-color: #0A0A0A;
    --card-background: #111111;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    color: var(--text-main-color);
    background-color: var(--background-color);
    font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 20px; /* Space for content below image */
    padding-top: 10px; /* Small top padding */
}

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

.page-promotions__hero-content {
    max-width: 90%;
    margin-top: 20px;
    padding: 0 15px;
}

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3em); /* Responsive font size */
    font-weight: bold;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.page-promotions__hero-description {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.6;
    color: var(--text-main-color);
}

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

.page-promotions__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    min-width: 180px;
}

.page-promotions__button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

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

.page-promotions__button--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-promotions__button--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: var(--text-main-color);
}

.page-promotions__current-promos-section,
.page-promotions__how-to-claim-section,
.page-promotions__why-choose-us-section,
.page-promotions__faq-section,
.page-promotions__cta-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-promotions__promo-card {
    background-color: var(--card-background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    min-height: 450px; /* Ensure cards have enough height */
}

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

.page-promotions__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

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

.page-promotions__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__card-text {
    font-size: 1em;
    line-height: 1.5;
    color: var(--text-main-color);
    margin-bottom: 20px;
}

.page-promotions__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    min-width: unset;
    width: fit-content;
}

.page-promotions__how-to-claim-section {
    background-color: var(--background-color);
}

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

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

.page-promotions__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
    background-color: rgba(255, 211, 107, 0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions__step-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__step-text {
    font-size: 1em;
    color: var(--text-main-color);
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-promotions__button--outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions__button--outline:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

.page-promotions__why-choose-us-section {
    background-color: var(--background-color);
}

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

.page-promotions__feature-item {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.page-promotions__feature-icon {
    width: 100px; /* Minimum 200px requirement for images applies to actual display, this is an icon *representation* */
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    color: var(--secondary-color);
}

.page-promotions__feature-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__feature-text {
    font-size: 1em;
    color: var(--text-main-color);
    line-height: 1.5;
}

.page-promotions__faq-section {
    background-color: var(--background-color);
}

.page-promotions__faq-list {
    margin-top: 40px;
}

.page-promotions__faq-item {
    background-color: var(--card-background);
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: var(--text-main-color);
    line-height: 1.6;
}

.page-promotions__faq-more-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1em;
    color: var(--text-main-color);
}

.page-promotions__faq-more-info a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-promotions__faq-more-info a:hover {
    color: var(--primary-color);
}

.page-promotions__cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--card-background);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.page-promotions__button--large {
    padding: 15px 35px;
    font-size: 1.2em;
    min-width: 250px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

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

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

    .page-promotions__section-description {
        font-size: 0.95em;
    }

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

    .page-promotions__button {
        width: 100%;
        min-width: unset;
    }

    .page-promotions__hero-buttons {
        flex-direction: column;
    }

    /* Ensure images in content areas are responsive and don't overflow */
    .page-promotions__promo-card img,
    .page-promotions__feature-item img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-content {
        margin-top: 15px;
    }

    .page-promotions__hero-buttons {
        gap: 10px;
    }

    .page-promotions__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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

    .page-promotions__promo-card {
        min-height: unset;
    }
}