:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --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;

    /* Base text color for light backgrounds, used as fallback */
    --color-text-dark: #333333;
    /* Base text color for dark backgrounds */
    --color-text-light: #ffffff;
}

.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-text-light); /* Default for dark background */
    background-color: var(--color-background);
}

.page-promotions a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions a:hover {
    color: var(--color-glow);
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text for all sizes */
    align-items: center;
    text-align: center;
    padding: 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--color-background);
}

.page-promotions__hero-content {
    max-width: 900px;
    margin-top: 30px; /* Space below image */
    z-index: 1;
    padding: 0 15px;
}

.page-promotions__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-promotions__hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-light);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

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

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    margin-bottom: 30px; /* Space between image and text */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

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

.page-promotions__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-promotions__dark-bg {
    background-color: var(--color-card-bg); /* Darker background for contrast */
    padding: 60px 20px;
    color: var(--color-text-light);
}

.page-promotions__why-choose-section {
    padding: 60px 20px;
}

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

.page-promotions__card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-text-light); /* Default text color for card */
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.page-promotions__types-section {
    padding: 60px 20px;
    background-color: var(--color-background);
}

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

.page-promotions__promo-category {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--color-text-light);
}

.page-promotions__category-title {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__category-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.page-promotions__category-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    flex-grow: 1; /* Pushes button to bottom */
}

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

.page-promotions__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--color-text-secondary);
}

.page-promotions__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--color-glow);
}

.page-promotions__btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-light);
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(34, 199, 104, 0.3);
    text-align: center;
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    margin-top: auto; /* Push button to bottom of card */
}

.page-promotions__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 199, 104, 0.5);
}

.page-promotions__terms-section {
    padding: 60px 20px;
}

.page-promotions__intro-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
}

.page-promotions__guide-section {
    padding: 60px 20px;
    background-color: var(--color-background);
}

.page-promotions__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions__step-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-light);
}

.page-promotions__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-text-light);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(34, 199, 104, 0.5);
}

.page-promotions__step-title {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.page-promotions__step-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.page-promotions__cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding: 0 15px;
}

.page-promotions__faq-section {
    padding: 60px 20px;
    background-color: var(--color-card-bg); /* Darker background for FAQ */
}

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

.page-promotions__faq-item {
    background-color: var(--color-background); /* Lighter background for individual FAQ item */
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--color-text-light);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--color-primary);
    cursor: pointer;
    background-color: var(--color-card-bg); /* Match card bg */
    border-bottom: 1px solid var(--color-divider);
    list-style: none; /* For details/summary */
}

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

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

.page-promotions__faq-qtext {
    flex-grow: 1;
    color: var(--color-text-light);
}

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-gold);
    margin-left: 20px;
}

.page-promotions__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--color-text-secondary);
    background-color: var(--color-background); /* Lighter background for answer */
}

.page-promotions__conclusion-section {
    padding: 60px 20px;
    text-align: center;
}

.page-promotions__conclusion-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 900px;
    margin: 0 auto 20px auto;
    padding: 0 15px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-promotions__hero-section {
        padding-top: 60px; /* More padding for desktop */
    }
}

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

    .page-promotions__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem); /* Adjust clamp for mobile */
        margin-bottom: 10px;
    }

    .page-promotions__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-promotions__section-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-promotions__cta-button,
    .page-promotions__btn-primary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__cta-bottom {
        padding: 0 15px;
    }

    .page-promotions__grid,
    .page-promotions__content-grid,
    .page-promotions__step-by-step {
        gap: 20px;
        padding: 0 15px; /* Ensure content has side padding */
    }

    .page-promotions__card,
    .page-promotions__promo-category,
    .page-promotions__step-card {
        padding: 20px;
    }

    .page-promotions__card-title,
    .page-promotions__category-title {
        font-size: 1.3rem;
    }

    .page-promotions__intro-text {
        font-size: 1rem;
    }

    /* Images */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Video (if any, though none explicitly requested for this page) */
    .page-promotions video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-promotions__video-section {
        padding-top: 10px !important; /* Small top padding for video section */
    }

    /* Containers for responsive padding */
    .page-promotions__hero-section,
    .page-promotions__why-choose-section,
    .page-promotions__types-section,
    .page-promotions__terms-section,
    .page-promotions__guide-section,
    .page-promotions__faq-section,
    .page-promotions__conclusion-section {
        padding-left: 15px;
        padding-right: 15px;
    }

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

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