/* style/blog-latest-promotions-f789.css */

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

.page-blog-latest-promotions-f789 {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--background-color-page);
}

.page-blog-latest-promotions-f789__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-blog-latest-promotions-f789__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* body handles header offset, small padding-top here */
    box-sizing: border-box;
    overflow: hidden;
}

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

.page-blog-latest-promotions-f789__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-latest-promotions-f789__hero-content {
    text-align: center;
    padding: 30px 20px;
    max-width: 900px;
    margin-top: -100px; /* Overlap slightly for visual flow, but text is below image in DOM */
    position: relative;
    z-index: 1;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.page-blog-latest-promotions-f789__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-latest-promotions-f789__intro-text {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-blog-latest-promotions-f789__section-title {
    font-size: 2.2em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-latest-promotions-f789__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.page-blog-latest-promotions-f789__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--gold-color);
    padding-left: 15px;
}

.page-blog-latest-promotions-f789 p {
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.page-blog-latest-promotions-f789__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-latest-promotions-f789__image-inline {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-latest-promotions-f789__btn-primary,
.page-blog-latest-promotions-f789__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-blog-latest-promotions-f789__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-latest-promotions-f789__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
    opacity: 0.9;
}

.page-blog-latest-promotions-f789__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 15px;
}

.page-blog-latest-promotions-f789__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.page-blog-latest-promotions-f789__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-latest-promotions-f789__step-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-blog-latest-promotions-f789__step-item:hover {
    transform: translateY(-5px);
}

.page-blog-latest-promotions-f789__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.7);
}

.page-blog-latest-promotions-f789__step-title {
    font-size: 1.3em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

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

.page-blog-latest-promotions-f789__benefit-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.page-blog-latest-promotions-f789__benefit-card:hover {
    background: var(--deep-green);
}

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

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

.page-blog-latest-promotions-f789__faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-latest-promotions-f789__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    color: var(--text-main);
    background: var(--deep-green);
    border-bottom: 1px solid var(--divider-color);
    transition: background 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-latest-promotions-f789__faq-question::-webkit-details-marker {
    display: none; /* For details/summary */
}

.page-blog-latest-promotions-f789__faq-question:hover {
    background: var(--primary-color);
}

.page-blog-latest-promotions-f789__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-blog-latest-promotions-f789__faq-answer {
    padding: 0 25px;
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-blog-latest-promotions-f789__faq-item[open] .page-blog-latest-promotions-f789__faq-answer {
    max-height: 500px; /* Sufficiently large for content */
    padding: 15px 25px 25px;
}

.page-blog-latest-promotions-f789__faq-item[open] .page-blog-latest-promotions-f789__faq-question {
    border-bottom: 1px solid transparent;
}

.page-blog-latest-promotions-f789__cta-footer {
    text-align: center;
    background: var(--deep-green);
    border-radius: 15px;
    padding: 50px 30px;
    margin-top: 60px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-latest-promotions-f789__cta-title {
    font-size: 2.5em;
    color: var(--gold-color);
    margin-bottom: 20px;
}

.page-blog-latest-promotions-f789__cta-description {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-latest-promotions-f789__hero-content {
        margin-top: -80px;
        padding: 25px 15px;
    }
    .page-blog-latest-promotions-f789__main-title {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }
    .page-blog-latest-promotions-f789__section-title {
        font-size: 2em;
    }
    .page-blog-latest-promotions-f789__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-blog-latest-promotions-f789 {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-latest-promotions-f789__section {
        padding: 30px 15px;
    }
    .page-blog-latest-promotions-f789__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-blog-latest-promotions-f789__hero-content {
        margin-top: -60px;
        padding: 20px 10px;
        border-radius: 10px;
    }
    .page-blog-latest-promotions-f789__main-title {
        font-size: clamp(1.6em, 6vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-blog-latest-promotions-f789__intro-text {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-blog-latest-promotions-f789__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-blog-latest-promotions-f789__sub-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-left: 10px;
    }
    .page-blog-latest-promotions-f789 p {
        font-size: 0.95em;
    }

    /* Image, Video, Button Responsiveness - IMPORTANT */
    .page-blog-latest-promotions-f789 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .page-blog-latest-promotions-f789__hero-image,
    .page-blog-latest-promotions-f789__image-full-width,
    .page-blog-latest-promotions-f789__image-inline {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-latest-promotions-f789__section,
    .page-blog-latest-promotions-f789__card,
    .page-blog-latest-promotions-f789__container,
    .page-blog-latest-promotions-f789__hero-section,
    .page-blog-latest-promotions-f789__hero-image-wrapper,
    .page-blog-latest-promotions-f789__cta-footer {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-blog-latest-promotions-f789__btn-primary,
    .page-blog-latest-promotions-f789__btn-secondary,
    .page-blog-latest-promotions-f789 a[class*="button"],
    .page-blog-latest-promotions-f789 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;
        margin-bottom: 10px; /* Add spacing between stacked buttons */
    }

    .page-blog-latest-promotions-f789__hero-content .page-blog-latest-promotions-f789__btn-primary {
        width: auto !important; /* Allow button to shrink if in a flex container */
        min-width: 200px; /* Ensure a minimum size for buttons */
        max-width: 90% !important;
        margin-left: auto;
        margin-right: auto;
    }

    .page-blog-latest-promotions-f789__cta-buttons,
    .page-blog-latest-promotions-f789__button-group,
    .page-blog-latest-promotions-f789__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important;
        gap: 10px;
    }

    .page-blog-latest-promotions-f789__step-by-step,
    .page-blog-latest-promotions-f789__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-latest-promotions-f789__cta-title {
        font-size: 1.8em;
    }
    .page-blog-latest-promotions-f789__cta-description {
        font-size: 1em;
    }
    .page-blog-latest-promotions-f789__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-blog-latest-promotions-f789__faq-answer {
        padding: 0 20px;
    }
    .page-blog-latest-promotions-f789__faq-item[open] .page-blog-latest-promotions-f789__faq-answer {
        padding: 10px 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-blog-latest-promotions-f789__hero-content {
        margin-top: -40px;
    }
    .page-blog-latest-promotions-f789__main-title {
        font-size: clamp(1.4em, 7vw, 2.2em);
    }
    .page-blog-latest-promotions-f789__section-title {
        font-size: 1.6em;
    }
}