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

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding to avoid header overlap, body handles main offset */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for aesthetic */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-promotions__hero-content {
    position: relative; /* Ensure content is above image if z-index is used, though it's below */
    max-width: 900px;
    padding: 0 20px;
}

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

.page-promotions__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.page-promotions__promotions-grid-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD36B;
    border-radius: 2px;
}

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

.page-promotions__promotion-card {
    background-color: #111111;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    border: 1px solid #3A2A12;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #F2C14E;
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-promotions__card-text {
    font-size: 0.95em;
    color: #E5E5E5;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
    padding: 0 20px;
}

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

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

.page-promotions__steps-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.page-promotions__step-card {
    background-color: #111111;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 1px solid #3A2A12;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #F2C14E;
    color: #0A0A0A;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
}

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

.page-promotions__step-text {
    font-size: 1em;
    line-height: 1.6;
    color: #E5E5E5;
}

.page-promotions__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

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

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

.page-promotions__link-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    padding: 10px 25px;
    border: 1px solid #F2C14E;
    color: #F2C14E;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions__link-button:hover {
    background-color: #F2C14E;
    color: #0A0A0A;
}

@media (max-width: 768px) {
    .page-promotions__hero-image-wrapper {
        max-height: 300px;
    }

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

    .page-promotions__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }

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

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

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

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

    .page-promotions__steps-container {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions__step-card {
        max-width: 100%;
    }

    /* Ensure all images in content area are responsive */
    .page-promotions__promotions-grid-section img,
    .page-promotions__how-to-claim-section img,
    .page-promotions__faq-section img {
        max-width: 100% !important;
        height: auto !important;
    }
}