.page-promotions {
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px 40px;
    max-width: 1390px;
    margin: 0 auto;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9; /* For 1200x675 */
}

.page-promotions__hero-content {
    max-width: 800px;
}

.page-promotions__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFF3E6; /* Text Main */
    text-align: center;
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}

.page-promotions__intro-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF3E6; /* Text Main */
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
    color: #FFF3E6; /* Text Main */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    text-align: center;
}

.page-promotions__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #FFF3E6; /* Text Main */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    padding: 0 15px;
    position: relative;
}

.page-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FF8C1A; /* Main color */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions__current-offers {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.page-promotions__offer-card {
    background-color: #17191F; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #A84F0C; /* Border color */
}

.page-promotions__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__offer-image-wrapper {
    width: 100%;
    height: 200px; /* Fixed height for consistency in cards */
    overflow: hidden;
}

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

.page-promotions__offer-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.page-promotions__offer-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFB04D; /* Glow color for emphasis */
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-promotions__offer-description {
    font-size: 0.95rem;
    color: #FFF3E6; /* Text Main */
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__offer-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
    color: #FFF3E6; /* Text Main */
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    text-align: center;
}

.page-promotions__offer-button:hover {
    background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%); /* Slightly lighter hover */
}

.page-promotions__terms-section,
.page-promotions__faq-section {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 15px;
    text-align: center;
}

.page-promotions__terms-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #FFF3E6; /* Text Main */
}

.page-promotions__terms-link {
    display: inline-block;
    color: #FF8C1A; /* Main color */
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #FF8C1A;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.page-promotions__terms-link:hover {
    color: #FFA53A; /* Auxiliary color */
    border-color: #FFA53A;
}

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

.page-promotions__faq-item {
    background-color: #17191F; /* Card BG */
    border: 1px solid #A84F0C; /* Border color */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFB04D; /* Glow color */
    margin-bottom: 10px;
    cursor: pointer;
}

.page-promotions__faq-answer {
    font-size: 0.95rem;
    color: #FFF3E6; /* Text Main */
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 849px) {
    .page-promotions__hero-section {
        padding-bottom: 30px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

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

    .page-promotions__section-title {
        font-size: clamp(1.4rem, 4.5vw, 2rem);
        margin-top: 40px;
        margin-bottom: 25px;
    }

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

    .page-promotions__offer-content {
        min-height: unset;
    }

    .page-promotions__offer-title {
        font-size: 1.2rem;
    }

    .page-promotions__offer-description {
        font-size: 0.9rem;
    }

    .page-promotions__offer-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .page-promotions__faq-question {
        font-size: 1.1rem;
    }

    .page-promotions__faq-answer {
        font-size: 0.9rem;
    }
}

@media (max-width: 549px) {
    .page-promotions {
        padding-top: 8px;
        padding-bottom: 30px;
    }
    .page-promotions__hero-section {
        padding: 15px 10px 25px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.4rem, 6vw, 2.2rem);
    }

    .page-promotions__intro-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .page-promotions__cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .page-promotions__section-title {
        font-size: clamp(1.2rem, 5.5vw, 1.8rem);
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-promotions__offer-card {
        margin: 0 5px;
    }

    .page-promotions__offer-content {
        padding: 18px;
    }
}

/* Ensure all images are responsive and not smaller than 200px where applicable */
@media (max-width: 768px) {
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
    .page-promotions__offer-image-wrapper {
        height: 180px;
    }
    .page-promotions__offer-image {
        min-width: 200px;
        min-height: 180px;
    }
    .page-promotions__hero-image {
        min-width: 200px;
        min-height: 112px;
    }
}