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

.page-blog-latest-promotions {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-blog-latest-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
    overflow: hidden;
}

.page-blog-latest-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-blog-latest-promotions__hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin-top: -100px; /* Pull content up slightly over the image */
    background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.page-blog-latest-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

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

.page-blog-latest-promotions__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-blog-latest-promotions__content-section,
.page-blog-latest-promotions__faq-section,
.page-blog-latest-promotions__conclusion-section {
    padding: 60px 20px;
    background-color: var(--bg);
    color: var(--text-main);
}

.page-blog-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-latest-promotions__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

.page-blog-latest-promotions__text-block {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-secondary);
    text-align: justify;
}

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

.page-blog-latest-promotions__promo-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-latest-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-latest-promotions__promo-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-latest-promotions__promo-card-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-latest-promotions__promo-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.page-blog-latest-promotions__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

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

.page-blog-latest-promotions__step-card:hover {
    transform: translateY(-5px);
}

.page-blog-latest-promotions__step-icon {
    font-size: 2.5rem;
    color: var(--gold-color);
    background-color: var(--deep-green);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
}

.page-blog-latest-promotions__step-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-blog-latest-promotions__cta-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

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

.page-blog-latest-promotions__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-latest-promotions__benefits-item {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-blog-latest-promotions__benefits-icon {
    width: 60px;
    height: 60px;
    min-width: 60px; /* Ensure icon doesn't shrink */
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-blog-latest-promotions__benefits-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: bold;
}

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

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

.page-blog-latest-promotions__faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-main);
    transition: background-color 0.3s ease;
    list-style: none; /* For details summary */
}

.page-blog-latest-promotions__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for details summary */
}

.page-blog-latest-promotions__faq-item[open] > .page-blog-latest-promotions__faq-question {
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--divider-color);
    border-radius: 10px 10px 0 0;
}

.page-blog-latest-promotions__faq-toggle {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-blog-latest-promotions__faq-item[open] .page-blog-latest-promotions__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or just '-' */
}

.page-blog-latest-promotions__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid var(--divider-color);
}

.page-blog-latest-promotions__cta-button--final {
    margin-top: 30px;
    width: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-latest-promotions__hero-content {
        margin-top: -80px;
        padding: 15px;
    }
    .page-blog-latest-promotions__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-latest-promotions__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-blog-latest-promotions__promo-card-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-blog-latest-promotions__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-blog-latest-promotions__hero-content {
        margin-top: -60px;
        padding: 15px;
        border-radius: 10px;
        max-width: 95%;
    }
    .page-blog-latest-promotions__main-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        margin-bottom: 10px;
    }
    .page-blog-latest-promotions__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-blog-latest-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-blog-latest-promotions__content-section,
    .page-blog-latest-promotions__faq-section,
    .page-blog-latest-promotions__conclusion-section {
        padding: 40px 15px;
    }
    .page-blog-latest-promotions__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-latest-promotions__section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-blog-latest-promotions__text-block {
        font-size: 0.95rem;
    }
    .page-blog-latest-promotions__promo-grid,
    .page-blog-latest-promotions__steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
    .page-blog-latest-promotions__promo-card,
    .page-blog-latest-promotions__step-card,
    .page-blog-latest-promotions__benefits-item,
    .page-blog-latest-promotions__faq-item {
        padding: 15px;
        border-radius: 10px;
    }
    .page-blog-latest-promotions__promo-card-image {
        height: 160px;
        margin-bottom: 15px;
    }
    .page-blog-latest-promotions__promo-card-title {
        font-size: 1.2rem;
    }
    .page-blog-latest-promotions__promo-card-text {
        font-size: 0.9rem;
    }
    .page-blog-latest-promotions__step-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .page-blog-latest-promotions__step-title {
        font-size: 1.1rem;
    }
    .page-blog-latest-promotions__step-text {
        font-size: 0.9rem;
    }
    .page-blog-latest-promotions__benefits-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .page-blog-latest-promotions__benefits-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    .page-blog-latest-promotions__benefits-title {
        font-size: 1.1rem;
    }
    .page-blog-latest-promotions__benefits-text {
        font-size: 0.9rem;
    }
    .page-blog-latest-promotions__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-blog-latest-promotions__faq-answer {
        font-size: 0.9rem;
        padding: 10px 20px 15px 20px;
    }

    /* Mobile image responsiveness */
    .page-blog-latest-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-latest-promotions__hero-image-wrapper,
    .page-blog-latest-promotions__promo-card,
    .page-blog-latest-promotions__step-card,
    .page-blog-latest-promotions__benefits-item,
    .page-blog-latest-promotions__faq-item,
    .page-blog-latest-promotions__cta-wrapper,
    .page-blog-latest-promotions__promo-grid,
    .page-blog-latest-promotions__steps-container,
    .page-blog-latest-promotions__benefits-list,
    .page-blog-latest-promotions__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Mobile button responsiveness */
    .page-blog-latest-promotions__cta-button,
    .page-blog-latest-promotions a[class*="button"],
    .page-blog-latest-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-blog-latest-promotions__cta-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

/* Color Contrast Fixes (if necessary based on dynamic background) */
.page-blog-latest-promotions {
    color: var(--text-main); /* Default for dark background */
}
.page-blog-latest-promotions__card,
.page-blog-latest-promotions__promo-card,
.page-blog-latest-promotions__step-card,
.page-blog-latest-promotions__benefits-item,
.page-blog-latest-promotions__faq-item {
    background-color: var(--card-bg);
    color: var(--text-main);
}
.page-blog-latest-promotions__text-block,
.page-blog-latest-promotions__promo-card-text,
.page-blog-latest-promotions__step-text,
.page-blog-latest-promotions__benefits-text,
.page-blog-latest-promotions__faq-answer p {
    color: var(--text-secondary);
}
.page-blog-latest-promotions__main-title,
.page-blog-latest-promotions__section-title,
.page-blog-latest-promotions__faq-toggle {
    color: var(--gold-color);
}
.page-blog-latest-promotions__promo-card-title,
.page-blog-latest-promotions__step-title,
.page-blog-latest-promotions__benefits-title {
    color: var(--primary-color);
}