:root {
    /* Custom Colors */
    --color-primary: #11A84E; /* Main Gold Green */
    --color-secondary: #22C768; /* Auxiliary Gold Green */
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-promotions {
    background-color: var(--color-background);
    color: var(--color-text-main);
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    min-height: 100vh;
}

.page-promotions__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    padding-bottom: 30px; /* Space below content */
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
}

.page-promotions__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
    margin-bottom: 20px; /* Space between image and text */
}

.page-promotions__hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 5; /* For 1920x600 */
    object-fit: cover;
    object-position: center;
}

.page-promotions__hero-content {
    max-width: 800px;
    padding: 0 15px;
}

.page-promotions__main-title {
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 15px;
    line-height: 1.2;
    /* Using clamp for H1 as per instructions */
    font-size: clamp(1.8rem, 4.5vw, 3rem); /* Adjusted for promotions page, still within guidelines */
    letter-spacing: 0.5px;
}

.page-promotions__hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: var(--color-button-gradient-start); /* Fallback */
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--color-glow);
}

/* Promotions List Section */
.page-promotions__promotions-list-section {
    padding: 60px 0;
}

.page-promotions__section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 20px;
}

.page-promotions__section-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

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

.page-promotions__promotion-card {
    background-color: var(--color-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--color-border);
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--color-glow);
}

.page-promotions__promotion-image-wrapper {
    margin: 0;
    overflow: hidden;
    /* Enforce minimum height for wrapper */
    min-height: 200px;
}

.page-promotions__promotion-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9; /* For 800x450 */
    filter: none; /* No color filters */
}

.page-promotions__promotion-content {
    padding: 25px;
}

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

.page-promotions__promotion-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-button-gradient-start); /* Fallback */
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__card-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), 0 0 8px var(--color-glow);
}

/* CTA Section */
.page-promotions__cta-section {
    background-color: var(--color-deep-green);
    padding: 80px 0;
    text-align: center;
}

.page-promotions__cta-title {
    font-size: clamp(1.6rem, 4.5vw, 2.8rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.page-promotions__cta-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-promotions__cta-button--large {
    padding: 16px 35px;
    font-size: 1.2rem;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 60px 0 80px 0;
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}

.page-promotions__faq-item {
    background-color: var(--color-card-bg);
    border-bottom: 1px solid var(--color-divider);
}

.page-promotions__faq-item:last-child {
    border-bottom: none;
}

.page-promotions__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform 0.2s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-promotions__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: var(--color-deep-green);
    color: var(--color-text-secondary);
}

.page-promotions__faq-answer.open {
    max-height: 200px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-promotions__faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-bottom: 20px;
    }
    .page-promotions__hero-banner img {
        aspect-ratio: 16 / 9; /* More common for mobile banners */
    }
    .page-promotions__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    .page-promotions__hero-description {
        font-size: 1rem;
    }
    .page-promotions__promotions-list-section,
    .page-promotions__cta-section,
    .page-promotions__faq-section {
        padding: 40px 0;
    }
    .page-promotions__promotions-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
    .page-promotions__promotion-card img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content images are not smaller than 200px display */
    .page-promotions img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Explicitly ensure min-width */
        min-height: 200px; /* Explicitly ensure min-height */
    }
    .page-promotions__promotion-image-wrapper {
        min-height: unset; /* Allow wrapper to shrink with image */
    }
}

@media (max-width: 480px) {
    .page-promotions__cta-button,
    .page-promotions__cta-button--large {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-promotions__promotion-title {
        font-size: 1.3rem;
    }
    .page-promotions__card-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .page-promotions__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer {
        padding: 15px 20px;
    }
}

/* Ensure all images inside .page-promotions are responsive and meet min-size requirements */
.page-promotions img {
    max-width: 100%;
    height: auto;
    /* This rule applies to all images in content area */
    /* Ensure display size is not less than 200px */
    min-width: 200px;
    min-height: 200px;
}