:root {
    --color-primary: #11A84E; /* Main color: Green */
    --color-secondary: #22C768; /* Auxiliary color: Lighter Green */
    --color-card-bg: #11271B; /* Card Background */
    --color-background: #08160F; /* Overall Background */
    --color-text-main: #F2FFF6; /* Main Text Color */
    --color-text-secondary: #A7D9B8; /* Secondary Text Color */
    --color-border: #2E7A4E; /* Border Color */
    --color-glow: #57E38D; /* Glow Effect */
    --color-gold: #F2C14E; /* Gold Color */
    --color-divider: #1E3A2A; /* Divider Color */
    --color-deep-green: #0A4B2C; /* Deep Green */
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --header-offset: 80px; /* Placeholder for header height */
}

/* Base styles for the promotions page */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: var(--color-text-main); /* Default text color for the page */
    background-color: var(--color-background); /* Overall page background */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll on desktop */
}

/* Section Header Styles */
.page-promotions__section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions__section-description {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    margin-bottom: 60px;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
}

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

.page-promotions__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Overlap slightly with image for visual flow */
    background: var(--color-background); /* Ensure text is readable */
    position: relative;
    z-index: 1;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-promotions__hero-description {
    font-size: 1.15em;
    color: var(--color-text-main);
    margin-bottom: 30px;
}

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

/* Button Styles */
.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn--primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__btn--secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__btn--secondary:hover {
    transform: translateY(-3px);
    background: rgba(var(--color-secondary), 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-promotions__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 30px;
}

/* Video Section */
.page-promotions__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--color-background);
    margin-bottom: 60px;
}

.page-promotions__video-container {
    width: 100%; /* Important for desktop flex container */
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9 / 16 * 100%) */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1; /* Make the link clickable over the video */
}

.page-promotions__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

/* Promotions Grid */
.page-promotions__promotions-grid {
    padding: 80px 20px;
    background-color: var(--color-background);
}

.page-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions__card {
    background-color: var(--color-card-bg); /* Dark card background */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--color-text-main); /* Light text on dark card */
    border: 1px solid var(--color-border);
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-promotions__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: var(--color-gold);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__card-text {
    font-size: 0.95em;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1; /* Push button to bottom */
}

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

.page-promotions__card-features li {
    font-size: 0.9em;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.page-promotions__card-features li::before {
    content: '✅';
    margin-right: 10px;
    color: var(--color-secondary);
}

/* Why Choose Section */
.page-promotions__why-choose {
    padding: 80px 20px;
    background-color: var(--color-deep-green); /* Darker background for contrast */
    color: var(--color-text-main);
}

.page-promotions__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions__feature-item {
    background-color: var(--color-card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-border);
}

.page-promotions__feature-item:hover {
    transform: translateY(-5px);
}

.page-promotions__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

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

.page-promotions__feature-text {
    font-size: 0.95em;
    color: var(--color-text-secondary);
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 80px 20px;
    background-color: var(--color-background);
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    color: var(--color-text-main);
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
    background-color: var(--color-deep-green);
    color: var(--color-gold);
}

.page-promotions__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    width: 20px;
    text-align: center;
    color: var(--color-secondary);
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    color: var(--color-gold);
}

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

/* For details tag, hide default marker */
.page-promotions__faq-item summary {
    list-style: none;
}
.page-promotions__faq-item summary::-webkit-details-marker {
    display: none;
}

/* Bottom CTA Section */
.page-promotions__cta-bottom {
    padding: 80px 20px;
    text-align: center;
    background: var(--button-gradient); /* Use gradient for a strong CTA */
    color: #ffffff;
    margin-top: 60px;
}

.page-promotions__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions__cta-title {
    font-size: 2.2em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__cta-description {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__hero-content {
        margin-top: -80px;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions__hero-section {
        margin-bottom: 40px;
    }

    .page-promotions__hero-content {
        margin-top: -60px;
        padding: 30px 15px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-promotions__hero-description {
        font-size: 1em;
    }

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

    .page-promotions__btn {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Mobile image responsive adaptation */
    .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__grid,
    .page-promotions__feature-grid,
    .page-promotions__faq-list,
    .page-promotions__cta-bottom,
    .page-promotions__video-section,
    .page-promotions__video-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure content doesn't overflow */
    }
    
    /* Video specific mobile styles */
    .page-promotions__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__video-section {
        padding-top: 10px !important; /* body handles --header-offset */
    }

    /* Button specific mobile styles */
    .page-promotions__cta-button,
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions a[class*="button"],
    .page-promotions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
      
    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-promotions__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    
    .page-promotions__cta-buttons {
        display: flex;
        flex-direction: column;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    .page-promotions__card-title {
        font-size: 1.4em;
    }

    .page-promotions__feature-title {
        font-size: 1.2em;
    }

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

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

    .page-promotions__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-content {
        margin-top: -40px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.5em, 8vw, 2.2em);
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__cta-title {
        font-size: 1.6em;
    }
}

/* Contrast Fixes */
.page-promotions__dark-bg {
  color: #ffffff; /* Deep Green background, light text */
  background: var(--color-deep-green);
}

.page-promotions__light-bg {
  color: #333333; /* For any accidental light background, ensure dark text */
  background: #ffffff;
}

/* Ensure text in main content area is readable */
.page-promotions__content-area p,
.page-promotions__content-area li {
    color: var(--color-text-secondary); /* Use secondary text color on dark backgrounds */
}

/* Specific card text color on card background */
.page-promotions__card p,
.page-promotions__card li {
    color: var(--color-text-secondary);
}