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

.page-promotions {
    max-width: 1390px;
    margin: 0 auto;
    padding: 10px 15px 50px; /* Small padding-top for the first section, relying on body for header offset */
    color: var(--text-main);
    background-color: var(--background);
    overflow-x: hidden;
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    text-align: center;
    padding: 20px 0;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Adjust max-width to match img width attribute */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto; /* Important for responsiveness and preventing stretch */
    display: block;
    aspect-ratio: 16 / 9; /* 1200x675 is 16:9 */
    object-fit: cover;
    object-position: center;
    filter: none; /* Ensure no filter is applied */
}

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

.page-promotions__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.75rem); /* Adjusted for promotions page, still clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--gold); /* Using gold for main title as it's an accent */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

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

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: var(--button); /* Using custom button gradient */
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.6);
}

.page-promotions__offers-list-section,
.page-promotions__why-choose-section,
.page-promotions__cta-bottom-section {
    margin-bottom: 60px;
    padding: 0 15px;
}

.page-promotions__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-main);
    position: relative;
}

.page-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--glow);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions__offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    box-sizing: border-box;
    width: 100%;
}

.page-promotions__offer-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.page-promotions__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__offer-image {
    width: 100%;
    height: auto; /* Ensure aspect ratio is maintained */
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3; /* 400x300 is 4:3 */
    min-height: 200px; /* Ensure images are not too small */
    min-width: 200px; /* Ensure images are not too small */
    filter: none; /* Ensure no filter is applied */
}

.page-promotions__card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px); /* Adjust based on min-height of image */
}

.page-promotions__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
    line-height: 1.4;
}

.page-promotions__card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-promotions__card-date {
    font-size: 0.85rem;
    color: var(--deep-green); /* Using deep green for date */
    margin-bottom: 15px;
    display: block;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    background: var(--button);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__card-button:hover {
    filter: brightness(1.1);
}

.page-promotions__why-choose-section {
    text-align: center;
}

.page-promotions__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    box-sizing: border-box;
    width: 100%;
}

.page-promotions__benefit-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    text-align: left;
}

.page-promotions__benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold);
}

.page-promotions__benefit-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.page-promotions__cta-bottom-section {
    text-align: center;
    padding: 40px 15px;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 0; /* Last section, no bottom margin */
    border: 1px solid var(--border);
}

.page-promotions__cta-bottom-section .page-promotions__section-title {
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-promotions__cta-bottom-section .page-promotions__section-title::after {
    background-color: var(--glow);
}

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

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

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-promotions__offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .page-promotions__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }
    .page-promotions__section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    .page-promotions__cta-button--large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    .page-promotions__hero-image {
        aspect-ratio: 16 / 9; /* Keep 16:9 for hero on smaller screens too */
    }
    .page-promotions__offer-image {
        aspect-ratio: 4 / 3;
        min-height: 200px; /* Ensure images are not too small */
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
    .page-promotions {
        padding-left: 10px;
        padding-right: 10px;
    }
    .page-promotions__hero-section {
        margin-bottom: 40px;
    }
    .page-promotions__offers-list-section,
    .page-promotions__why-choose-section,
    .page-promotions__cta-bottom-section {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    .page-promotions__intro-description {
        font-size: 1rem;
    }
    .page-promotions__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    .page-promotions__offer-card {
        min-width: unset; /* Allow cards to shrink more */
    }
}

@media (max-width: 549px) {
    .page-promotions__offers-grid,
    .page-promotions__benefits-grid {
        grid-template-columns: 1fr; /* Single column layout for very small screens */
        gap: 25px;
    }
    .page-promotions__hero-content {
        padding: 0 10px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }
    .page-promotions__intro-description {
        font-size: 0.95rem;
    }
    .page-promotions__cta-button {
        width: 100%; /* Full width button on small screens */
        max-width: 300px;
        margin: 0 auto;
    }
    .page-promotions__cta-button--large {
        width: 100%;
        max-width: 350px;
    }
    .page-promotions__offer-card {
        width: 100%;
    }
}

/* Ensure no content overflow for mobile */
.page-promotions {
    overflow-x: hidden;
}
.page-promotions__hero-image-wrapper,
.page-promotions__offers-grid,
.page-promotions__benefits-grid {
    box-sizing: border-box;
    width: 100%;
}
.page-promotions__offer-image {
    max-width: 100%; /* Enforce max-width 100% for all images in content area */
    height: auto;
}
/* CSS for content area images to ensure min size and no filter */
.page-promotions__offers-list-section img,
.page-promotions__why-choose-section img,
.page-promotions__cta-bottom-section img {
    min-width: 200px;
    min-height: 200px;
    /* Ensure no filter is applied to images */
    filter: none;
}