:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --body-bg: #08160F; /* This color is very dark, ensuring light text for contrast */
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-promotions {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--body-bg); /* Ensure page background matches custom color */
    line-height: 1.6;
}

/* Ensure padding-top for the first section, not using --header-offset */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
    padding-top: 10px; /* Small top padding for visual separation */
    background-color: var(--deep-green); /* A darker green for hero section background */
    color: var(--text-main);
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Space between image and text */
}

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

.page-promotions__hero-content {
    position: relative; /* Relative for z-index if needed, but no overlay */
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2; /* Ensure content is above any potential background elements */
}

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: bold;
    color: var(--gold-color); /* Use gold for main title for emphasis */
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: clamp(1em, 1.5vw, 1.2em);
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure text breaks within button */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
    max-width: 100%; /* Ensure button doesn't overflow container */
}

.page-promotions__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text for contrast on dark gradient */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: var(--glow-color); /* Green text for secondary button */
    border: 2px solid var(--glow-color);
}

.page-promotions__btn-secondary:hover {
    background-color: var(--glow-color);
    color: var(--body-bg); /* Dark text on hover */
    transform: translateY(-2px);
}

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

.page-promotions__btn-large {
    padding: 18px 40px;
    font-size: 1.1em;
}

.page-promotions__btn-center {
    display: block;
    margin: 30px auto 0 auto;
}

.page-promotions__section {
    padding: 60px 20px;
    background-color: var(--body-bg); /* Default section background */
    color: var(--text-main);
    border-bottom: 1px solid var(--divider-color);
}

.page-promotions__section--intro {
    background-color: var(--deep-green); /* Slightly different background for intro */
}

.page-promotions__section--cta {
    background-color: var(--primary-color);
    text-align: center;
}

.page-promotions__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: var(--glow-color);
    border-radius: 2px;
}

.page-promotions__section-title--cta {
    color: #ffffff;
    margin-bottom: 20px;
}
.page-promotions__section-title--cta::after {
    background-color: #ffffff;
}

.page-promotions__paragraph {
    font-size: 1.05em;
    margin-bottom: 1em;
    color: var(--text-main);
    text-align: justify;
}

.page-promotions__paragraph--cta {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-main);
}

.page-promotions__paragraph--small {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-top: 20px;
}

.page-promotions__highlight {
    color: var(--gold-color);
    font-weight: bold;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add padding for inner content */
    box-sizing: border-box;
}

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

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

.page-promotions__promo-card {
    background-color: var(--card-bg); /* Card background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__promo-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--divider-color);
}

.page-promotions__promo-card .page-promotions__promo-title {
    font-size: 1.4em;
    color: var(--gold-color);
    padding: 20px 20px 10px 20px;
    margin-bottom: 0;
}

.page-promotions__promo-card .page-promotions__promo-description {
    font-size: 0.95em;
    color: var(--text-secondary);
    padding: 0 20px 20px 20px;
    flex-grow: 1; /* Allow description to take available space */
}

.page-promotions__promo-card .page-promotions__btn-primary {
    margin: 0 20px 20px 20px;
    width: calc(100% - 40px); /* Adjust width for padding */
}

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

.page-promotions__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--text-main);
}

.page-promotions__list-item::before {
    content: '✅'; /* Green checkmark */
    position: absolute;
    left: 0;
    color: var(--glow-color);
    font-size: 1.2em;
    line-height: 1;
}

.page-promotions__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-promotions__numbered-list .page-promotions__list-item {
    padding-left: 0;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-promotions__numbered-list .page-promotions__list-item::before {
    content: none; /* Remove checkmark for numbered list */
}

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

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

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--gold-color); /* FAQ question text color */
    background-color: var(--deep-green); /* Darker background for question */
    border-bottom: 1px solid var(--divider-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-promotions__faq-question:hover {
    background-color: var(--primary-color);
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-promotions__faq-qtext {
    flex-grow: 1;
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    color: #ffffff;
}

.page-promotions__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: var(--text-secondary); /* FAQ answer text color */
    background-color: var(--card-bg);
}

.page-promotions__faq-answer p {
    margin-bottom: 1em;
    color: var(--text-secondary);
}

.page-promotions__faq-item summary::-webkit-details-marker {
    display: none;
}

/* Links within content */
.page-promotions a {
    color: var(--glow-color); /* Green for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions a:hover {
    color: var(--gold-color); /* Gold on hover */
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-promotions__hero-content {
        padding: 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
    .page-promotions__hero-description {
        font-size: clamp(0.9em, 1.8vw, 1.1em);
    }
    .page-promotions__section-title {
        font-size: clamp(1.6em, 3.5vw, 2.2em);
    }
    .page-promotions__promo-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 0 10px 40px 10px; /* Adjust padding for mobile */
    }
    .page-promotions__hero-image-wrapper {
        max-height: 300px;
    }
    .page-promotions__hero-content {
        padding: 10px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-promotions__hero-description {
        font-size: clamp(0.85em, 2.5vw, 1em);
    }
    .page-promotions__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 100% !important; /* Ensure button group takes full width */
        padding: 0 15px !important; /* Add padding to button container */
        box-sizing: border-box !important;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        width: 100% !important; /* Full width for buttons */
        max-width: 100% !important;
        padding: 12px 15px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-promotions__section {
        padding: 40px 10px;
    }
    .page-promotions__container {
        padding: 0 10px;
    }
    .page-promotions__section-title {
        font-size: clamp(1.4em, 4.5vw, 2em);
        margin-bottom: 30px;
    }
    .page-promotions__paragraph {
        font-size: 0.95em;
    }
    .page-promotions__list-item,
    .page-promotions__numbered-list .page-promotions__list-item {
        font-size: 0.95em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: 1fr; /* Single column for promo cards */
    }
    .page-promotions__promo-image {
        height: 180px;
    }
    .page-promotions__promo-card .page-promotions__promo-title {
        font-size: 1.2em;
    }
    .page-promotions__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-promotions__faq-answer {
        padding: 15px;
    }

    /* 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,
    .page-promotions__promo-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }
    
    /* Specific overrides for padding if needed, e.g. for hero section content */
    .page-promotions__hero-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    /* Ensure video-section top padding is small, not header-offset */
    .page-promotions__video-section {
        padding-top: 10px !important;
    }
}

/* Ensure no filter on images */
.page-promotions img {
    filter: none !important;
}