:root {
    --page-promotions-card-bg: #11271B;
    --page-promotions-background: #08160F;
    --page-promotions-text-main: #F2FFF6;
    --page-promotions-text-secondary: #A7D9B8;
    --page-promotions-border: #2E7A4E;
    --page-promotions-glow: #57E38D;
    --page-promotions-gold: #F2C14E;
    --page-promotions-divider: #1E3A2A;
    --page-promotions-deep-green: #0A4B2C;
    --page-promotions-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-promotions-brand-main: #11A84E; /* Primary brand color */
    --page-promotions-brand-accent: #22C768; /* Secondary brand color */
}

.page-promotions {
    background-color: var(--page-promotions-background); /* Deep Green/Dark background */
    color: var(--page-promotions-text-main); /* Light text for contrast */
    font-family: 'Arial', sans-serif; /* Example font */
    line-height: 1.6;
}

/* Base styles for sections and containers */
.page-promotions__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden; /* Prevent content overflow */
}

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

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px; /* Adjust as needed for content below */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--page-promotions-deep-green); /* Ensure a dark background for hero text */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

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

.page-promotions__hero-content-wrapper {
    padding-top: 40px; /* Space between image and text */
    max-width: 900px; /* Constrain text width */
    margin: 0 auto;
    color: var(--page-promotions-text-main);
}

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
    color: var(--page-promotions-gold);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions__intro-text {
    font-size: 1.1em;
    color: var(--page-promotions-text-secondary);
    margin-bottom: 30px;
}

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

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

.page-promotions__btn-primary {
    background: var(--page-promotions-button-gradient);
    color: var(--page-promotions-text-main); /* Light text on dark button */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--page-promotions-brand-accent); /* Brand accent text */
    border: 2px solid var(--page-promotions-brand-accent);
}

.page-promotions__btn-secondary:hover {
    background: var(--page-promotions-brand-accent);
    color: var(--page-promotions-text-main);
}

.page-promotions__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Section Titles */
.page-promotions__section-title {
    font-size: 2.5em;
    color: var(--page-promotions-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

/* Offer Grid */
.page-promotions__offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__offer-card {
    background-color: var(--page-promotions-card-bg); /* Dark card background */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-promotions-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--page-promotions-text-main); /* Light text */
}

.page-promotions__offer-image {
    width: 100%;
    max-width: 100%;
    height: 200px; /* Fixed height for consistency, object-fit will handle aspect ratio */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Important for responsiveness */
    min-width: 200px; /* Min size enforcement */
    min-height: 200px; /* Min size enforcement */
}

.page-promotions__card-title {
    font-size: 1.4em;
    color: var(--page-promotions-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: var(--page-promotions-text-secondary);
    margin-bottom: 25px;
    flex-grow: 1; /* Allow description to take available space */
}

/* Guide List */
.page-promotions__guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: guide-counter;
}

.page-promotions__guide-list li {
    background-color: var(--page-promotions-card-bg);
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--page-promotions-border);
    position: relative;
    padding-left: 60px;
    color: var(--page-promotions-text-main);
}

.page-promotions__guide-list li::before {
    counter-increment: guide-counter;
    content: counter(guide-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--page-promotions-brand-main);
    color: var(--page-promotions-text-main);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-promotions__guide-list li strong {
    color: var(--page-promotions-gold);
}

/* Terms and Conditions List */
.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-promotions__terms-list li {
    background-color: var(--page-promotions-card-bg);
    padding: 15px 25px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid var(--page-promotions-border);
    color: var(--page-promotions-text-secondary);
}

.page-promotions__terms-list li strong {
    color: var(--page-promotions-text-main);
}

/* App Benefits Section */
.page-promotions__app-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-promotions__app-text {
    flex: 1;
}

.page-promotions__app-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-promotions__app-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--page-promotions-text-secondary);
}

.page-promotions__app-list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: var(--page-promotions-brand-accent);
}

.page-promotions__app-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 200px; /* Min size enforcement */
    min-height: 200px; /* Min size enforcement */
}

/* FAQ Section */
.page-promotions__faq-list {
    margin-top: 30px;
}

.page-promotions__faq-item {
    background-color: var(--page-promotions-card-bg);
    border: 1px solid var(--page-promotions-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--page-promotions-text-main);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: var(--page-promotions-gold);
    cursor: pointer;
    background-color: var(--page-promotions-deep-green); /* Slightly darker background for summary */
    border-bottom: 1px solid var(--page-promotions-divider);
}

.page-promotions__faq-question::-webkit-details-marker {
    display: none;
}
.page-promotions__faq-question::marker { /* For Firefox */
    display: none;
}
.page-promotions__faq-question:hover {
    background-color: var(--page-promotions-deep-green); /* Slight hover effect */
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg); /* Rotate + to become X or similar */
}

.page-promotions__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: var(--page-promotions-text-secondary);
    line-height: 1.6;
}

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

/* Call to Action Section */
.page-promotions__call-to-action {
    background-color: var(--page-promotions-deep-green);
    text-align: center;
    padding: 80px 0;
}

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

.page-promotions__cta-description {
    font-size: 1.1em;
    color: var(--page-promotions-text-secondary);
    margin-bottom: 40px;
}

/* General text color for paragraphs */
.page-promotions p {
    color: var(--page-promotions-text-secondary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-promotions__offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-promotions__app-content {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions__app-image-wrapper {
        margin-top: 30px;
    }
}

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

    .page-promotions__container {
        padding: 0 15px; /* Add side padding for mobile */
    }

    .page-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em); /* Adjust H1 for smaller screens */
    }

    .page-promotions__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-promotions__intro-text,
    .page-promotions__cta-description {
        font-size: 1em;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .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,
    .page-promotions__offer-card,
    .page-promotions__app-content,
    .page-promotions__app-image-wrapper,
    .page-promotions__faq-item,
    .page-promotions__cta-buttons,
    .page-promotions__hero-image-wrapper,
    .page-promotions__hero-content-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent overflow */
    }

    /* Specific for hero image to ensure it doesn't cause overflow */
    .page-promotions__hero-image {
        min-width: unset !important; /* Override min-width for mobile */
        min-height: unset !important; /* Override min-height for mobile */
    }

    .page-promotions__offer-image {
        min-width: unset !important; /* Override min-width for mobile */
        min-height: unset !important; /* Override min-height for mobile */
        height: auto !important; /* Let height adjust to maintain aspect ratio */
    }
    .page-promotions__app-image {
        min-width: unset !important; /* Override min-width for mobile */
        min-height: unset !important; /* Override min-height for mobile */
        height: auto !important; /* Let height adjust to maintain aspect ratio */
    }

    .page-promotions__guide-list li {
        padding-left: 20px; /* Reduce padding for smaller screens */
        padding-right: 15px;
    }
    .page-promotions__guide-list li::before {
        left: 10px;
        top: 20px; /* Adjust vertical position */
        transform: translateY(0);
    }

    .page-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

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