:root {
    /* Custom Colors */
    --page-promotions-primary-color: #F2C14E;
    --page-promotions-secondary-color: #FFD36B;
    --page-promotions-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --page-promotions-card-bg: #111111;
    --page-promotions-background: #0A0A0A;
    --page-promotions-text-main: #FFF6D6;
    --page-promotions-border-color: #3A2A12;
    --page-promotions-glow-color: #FFD36B;
}

.page-promotions {
    background-color: var(--page-promotions-background);
    color: var(--page-promotions-text-main);
    padding-top: 10px; /* Small padding-top, body handles header-offset */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    max-width: 1390px; /* Boxed feel */
    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: 8px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/5; /* 1920:600 ratio */
    fetchpriority: high; /* For the main hero image */
}

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

.page-promotions__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjust clamp for h1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--page-promotions-primary-color);
}

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

.page-promotions__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--page-promotions-button-gradient);
    color: #000; /* Text color for gradient button should be dark */
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

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

.page-promotions__latest-promotions-section,
.page-promotions__terms-conditions-section,
.page-promotions__faq-section {
    padding: 40px 20px;
    max-width: 1390px;
    margin: 0 auto;
}

.page-promotions__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--page-promotions-primary-color);
    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: var(--page-promotions-secondary-color);
    border-radius: 2px;
}

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

.page-promotions__promotion-card {
    background-color: var(--page-promotions-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--page-promotions-border-color);
}

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

.page-promotions__promotion-card-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9; /* Standard card image ratio */
    loading: lazy;
}

.page-promotions__promotion-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions__promotion-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--page-promotions-primary-color);
    line-height: 1.4;
}

.page-promotions__promotion-card-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__promotion-card-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--page-promotions-button-gradient);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease-in-out;
    border: none;
    cursor: pointer;
    text-align: center;
    align-self: flex-start; /* Align button to start of flex container */
}

.page-promotions__promotion-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(255, 211, 107, 0.3);
}

.page-promotions__content-wrapper {
    background-color: var(--page-promotions-card-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--page-promotions-border-color);
}

.page-promotions__terms-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.page-promotions__terms-list li {
    margin-bottom: 10px;
}

.page-promotions__read-more-button {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 25px;
    background: var(--page-promotions-button-gradient);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.page-promotions__read-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(255, 211, 107, 0.3);
}

.page-promotions__faq-section a {
    color: var(--page-promotions-secondary-color);
    text-decoration: none;
}

.page-promotions__faq-section a:hover {
    text-decoration: underline;
}

.page-promotions__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-promotions__faq-item {
    background-color: var(--page-promotions-card-bg);
    border: 1px solid var(--page-promotions-border-color);
    border-radius: 10px;
    padding: 20px;
}

.page-promotions__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--page-promotions-secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* Space for indicator */
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-promotions__promotions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

    .page-promotions__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }
}

@media (max-width: 549px) {
    .page-promotions__hero-section {
        padding: 15px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.3rem, 7vw, 2rem);
    }

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

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

    .page-promotions__latest-promotions-section,
    .page-promotions__terms-conditions-section,
    .page-promotions__faq-section {
        padding: 30px 15px;
    }

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

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

    .page-promotions__promotion-card-title {
        font-size: 1.15rem;
    }

    .page-promotions__promotion-card-text {
        font-size: 0.9rem;
    }

    .page-promotions__promotion-card-button {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .page-promotions__content-wrapper,
    .page-promotions__faq-item {
        padding: 20px;
    }

    .page-promotions__terms-list {
        padding-left: 20px;
        font-size: 0.95rem;
    }

    .page-promotions__read-more-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

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

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

    /* Ensure images don't overflow on mobile */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}