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

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

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

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

.page-promotions__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2C14E;
    margin-bottom: 20px;
}

.page-promotions__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.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: 8px;
    font-weight: bold;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-promotions__section-title {
    text-align: center;
    color: #F2C14E;
    font-size: 2.2em;
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 0 20px;
}

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

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

.page-promotions__promotion-card,
.page-promotions__step-card {
    background-color: #111111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #3A2A12;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

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

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

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

.page-promotions__card-title {
    color: #FFD36B;
    font-size: 1.4em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__card-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: #FFF6D6;
    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: 6px;
    font-weight: bold;
    text-align: center;
    align-self: flex-start;
    transition: background-color 0.2s ease-in-out;
}

.page-promotions__card-button:hover {
    opacity: 0.9;
}

.page-promotions__step-card {
    text-align: center;
    padding: 30px;
}

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

.page-promotions__step-text {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF6D6;
    margin-bottom: 25px;
}

.page-promotions__step-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}

.page-promotions__step-button:hover {
    opacity: 0.9;
}

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

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

.page-promotions__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF6D6;
}

.page-promotions__cta-banner {
    background-color: #111111;
    border-top: 2px solid #F2C14E;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}

.page-promotions__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-promotions__cta-text {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-promotions__cta-button--large {
    padding: 18px 35px;
    font-size: 1.1em;
}

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

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

    .page-promotions__description {
        font-size: 1em;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 30px;
    }

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

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

    .page-promotions__card-image {
        height: auto; /* Allow image to scale with aspect ratio */
        min-height: 200px; /* Ensure minimum size */
    }

    .page-promotions__card-content {
        padding: 20px;
    }

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

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

    .page-promotions__cta-text {
        font-size: 1em;
    }

    .page-promotions__cta-banner {
        padding: 40px 15px;
    }

    .page-promotions__hero-image, .page-promotions__promotion-card img, .page-promotions__step-card img, .page-promotions__faq-item img {
        max-width: 100%;
        height: auto;
    }
    .page-promotions img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure content images are not too small */
        min-height: 200px;
    }
}

@media (min-width: 769px) {
    .page-promotions__hero-section .page-promotions__hero-image {
        width: 100%;
        max-width: 1200px; /* Constrain hero image width on larger screens */
    }
}

/* Ensure all content images meet the minimum size requirement */
.page-promotions__hero-section img,
.page-promotions__current-promotions-section img,
.page-promotions__how-to-claim-section img {
    min-width: 200px;
    min-height: 200px;
}