.page-promotions {
    background-color: #0D0E12;
    color: #FFF3E6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for non-index pages, body handles header offset */
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Ensure image is above text on mobile by default */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-promotions__hero-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.page-promotions__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #FF8C1A, #FFA53A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #FF8C1A; /* Fallback */
    line-height: 1.2;
}

.page-promotions__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
    border: none;
    cursor: pointer;
}

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

.page-promotions__section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #FF8C1A, #FFA53A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #FF8C1A; /* Fallback */
    padding: 0 15px;
}

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

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

.page-promotions__offer-card {
    background-color: #17191F;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    border: 1px solid #A84F0C;
    transition: transform 0.3s ease;
}

.page-promotions__offer-card:hover {
    transform: translateY(-5px);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

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

.page-promotions__card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFB04D;
}

.page-promotions__card-text {
    font-size: 1rem;
    color: #FFF3E6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-cta {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.95rem;
    text-align: center;
    transition: background 0.3s ease;
}

.page-promotions__card-cta:hover {
    background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

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

.page-promotions__step-item {
    background-color: #17191F;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid #A84F0C;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-promotions__step-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFB04D;
}

.page-promotions__step-text {
    font-size: 1rem;
    color: #FFF3E6;
}

.page-promotions__cta-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Default to column for mobile */
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #17191F;
    border: 1px solid #A84F0C;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
}

.page-promotions__cta-banner-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions__cta-banner-content {
    padding: 0 20px;
    max-width: 700px;
}

.page-promotions__cta-banner-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFB04D;
}

.page-promotions__cta-banner-text {
    font-size: 1.1rem;
    color: #FFF3E6;
    margin-bottom: 30px;
}

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

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

.page-promotions__faq-item {
    background-color: #17191F;
    border: 1px solid #A84F0C;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-question {
    font-size: 1.3rem;
    font-weight: bold;
    padding: 20px 25px;
    color: #FFB04D;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1f2229;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.is-active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__faq-answer {
    font-size: 1rem;
    padding: 0 25px 20px;
    color: #FFF3E6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__faq-answer.is-open {
    max-height: 200px; /* Adjust as needed */
    padding: 0 25px 20px;
}

.page-promotions__view-all-faq-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__view-all-faq-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

/* Desktop specific adjustments */
@media (min-width: 769px) {
    .page-promotions__hero-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .page-promotions__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        border-radius: 0; /* Full width on desktop */
        margin-bottom: 0;
    }

    .page-promotions__hero-content {
        position: relative;
        z-index: 1;
        background-color: rgba(13, 14, 18, 0.6); /* Semi-transparent overlay for text readability */
        padding: 40px;
        border-radius: 10px;
        max-width: 900px;
    }

    .page-promotions__cta-banner {
        flex-direction: row; /* Row layout on desktop */
        text-align: left;
        padding: 40px;
    }

    .page-promotions__cta-banner-image {
        width: 40%;
        max-height: none;
        margin-right: 30px;
        margin-bottom: 0;
    }

    .page-promotions__cta-banner-content {
        flex-grow: 1;
        padding: 0;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-promotions__hero-image,
    .page-promotions__card-image,
    .page-promotions__cta-banner-image,
    .page-promotions__offers-grid img,
    .page-promotions__steps-grid img {
        max-width: 100%;
        height: auto;
    }

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

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

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

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

    .page-promotions__card-title {
        font-size: 1.3rem;
    }

    .page-promotions__step-title {
        font-size: 1.4rem;
    }

    .page-promotions__cta-banner-title {
        font-size: 1.6rem;
    }

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

    .page-promotions__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .page-promotions__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .page-promotions__faq-answer {
        padding: 0 20px 15px;
    }

    .page-promotions__faq-answer.is-open {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: 1.7rem;
    }

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

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

    .page-promotions__cta-banner-title {
        font-size: 1.4rem;
    }
}