.page-promotions {
    font-family: 'Arial', sans-serif;
    background-color: #08160F; /* Background color from custom palette */
    color: #F2FFF6; /* Main text color from custom palette, suitable for dark background */
    line-height: 1.6;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions__container--center {
    text-align: center;
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image slightly for text readability */
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: #F2FFF6; /* Main text color for hero content */
    padding: 20px;
}

.page-promotions__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Flexible font size for H1 */
    font-weight: bold;
    color: #F2C14E; /* Gold color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #A7D9B8; /* Secondary text color */
}

.page-promotions__description--large {
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box; /* Include padding in width */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
}

.page-promotions__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button gradient */
    color: #F2FFF6; /* Text Main for primary button */
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-promotions__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
    transform: translateY(-2px);
}

.page-promotions__btn-primary--large {
    padding: 18px 40px;
    font-size: 1.25rem;
}

.page-promotions__btn-secondary {
    background-color: transparent;
    border: 2px solid #2AD16F; /* Green color for secondary button border */
    color: #2AD16F; /* Green color for secondary button text */
}

.page-promotions__btn-secondary:hover {
    background-color: #2AD16F;
    color: #F2FFF6;
    transform: translateY(-2px);
}

.page-promotions__section {
    padding: 60px 0;
}

.page-promotions__section--dark {
    background-color: #11271B; /* Card BG color for dark sections */
}

.page-promotions__section--cta {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green for CTA section */
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #F2C14E; /* Gold color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions__sub-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #57E38D; /* Glow color for subtitles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-promotions__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-promotions__text-block {
    flex: 1;
}

.page-promotions__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: block; /* Important for responsiveness */
}

.page-promotions__list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-promotions__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #A7D9B8; /* Secondary text color for list items */
}

.page-promotions__list-item::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #57E38D; /* Glow color for icon */
    font-size: 1.2rem;
}

.page-promotions__promotion-cards,
.page-promotions__terms-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__card {
    background-color: #11271B; /* Card BG color */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #F2FFF6; /* Main text color for card */
    border: 1px solid #2E7A4E; /* Border color */
}

.page-promotions__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Important for responsiveness */
}

.page-promotions__card-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold color for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-text {
    font-size: 1rem;
    color: #A7D9B8; /* Secondary text color for card text */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__final-note {
    margin-top: 40px;
    font-style: italic;
    text-align: center;
    color: #A7D9B8; /* Secondary text color */
}

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

.page-promotions__faq-item {
    background-color: #11271B; /* Card BG color for FAQ item */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6; /* Main text color for FAQ item */
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #F2C14E; /* Gold color for FAQ question */
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green for FAQ question background */
    user-select: none;
}

.page-promotions__faq-question::-webkit-details-marker,
.page-promotions__faq-question::marker {
    display: none; /* Hide default marker */
}

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #57E38D; /* Glow color for toggle icon */
}

.page-promotions__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Secondary text color for FAQ answer */
    /* Handled by <details> native behavior, or JS for non-details */
}

.page-promotions__faq-answer p {
    margin-top: 15px;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions__content-wrapper {
        flex-direction: column;
    }
    .page-promotions__content-wrapper--reversed {
        flex-direction: column; /* Also column for reversed on tablet */
    }
    .page-promotions__image-block {
        margin-top: 30px;
    }
    .page-promotions__hero-content {
        padding: 15px;
    }
}

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

    .page-promotions__hero-section {
        min-height: 450px;
        padding-bottom: 40px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-promotions__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .page-promotions__description--large {
        font-size: 1.1rem;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 15px; /* Add padding to container for buttons */
        box-sizing: border-box;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__btn-primary--large {
        padding: 15px 25px;
        font-size: 1.1rem;
    }

    .page-promotions__section {
        padding: 40px 0;
    }

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

    .page-promotions__sub-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-promotions__promotion-cards,
    .page-promotions__terms-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__card {
        padding: 25px;
    }

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

    .page-promotions__card-text {
        font-size: 0.95rem;
    }

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

    .page-promotions__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.95rem;
    }
    
    /* Mobile image responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Ensure hero image wrapper handles mobile */
    .page-promotions__hero-image-wrapper {
        width: 100%;
        height: 100%;
    }
    
    .page-promotions__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Video section top padding (if video were present) */
    .page-promotions__video-section {
        padding-top: 10px !important;
    }
}