:root {
    --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-cashback {
    background-color: var(--color-background);
    color: var(--color-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 0; /* body already handles --header-offset */
}

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

.page-promotions-cashback__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--color-deep-green);
    overflow: hidden;
}

.page-promotions-cashback__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-promotions-cashback__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    display: block;
}

.page-promotions-cashback__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: var(--color-text-main);
}

.page-promotions-cashback__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--color-text-main);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-cashback__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-cashback__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.page-promotions-cashback__btn-primary {
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__btn-secondary {
    background: transparent;
    color: var(--color-button-gradient-start);
    border: 2px solid var(--color-button-gradient-start);
}

.page-promotions-cashback__btn-secondary:hover {
    background: var(--color-button-gradient-start);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-promotions-cashback__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text-main);
}

.page-promotions-cashback__intro-section,
.page-promotions-cashback__types-section,
.page-promotions-cashback__benefits-section,
.page-promotions-cashback__cta-final-section {
    padding: 80px 0;
    text-align: center;
}

.page-promotions-cashback__intro-text {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-promotions-cashback__how-it-works-section,
.page-promotions-cashback__eligibility-section,
.page-promotions-cashback__faq-section {
    padding: 80px 0;
    background-color: var(--color-card-bg);
    color: var(--color-text-main);
}

.page-promotions-cashback__how-it-works-section .page-promotions-cashback__section-title,
.page-promotions-cashback__eligibility-section .page-promotions-cashback__section-title,
.page-promotions-cashback__faq-section .page-promotions-cashback__section-title {
    color: var(--color-text-main);
}

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

.page-promotions-cashback__step-card {
    background-color: var(--color-background);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: var(--color-text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.page-promotions-cashback__step-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
}

.page-promotions-cashback__step-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--color-glow);
}

.page-promotions-cashback__step-card p {
    font-size: 1em;
    color: var(--color-text-secondary);
}

.page-promotions-cashback__step-card a {
    color: var(--color-gold);
    text-decoration: underline;
}

.page-promotions-cashback__cta-center {
    margin-top: 50px;
}

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

.page-promotions-cashback__offer-card {
    background-color: var(--color-card-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    color: var(--color-text-main);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-promotions-cashback__offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-promotions-cashback__offer-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-glow);
}

.page-promotions-cashback__offer-card p {
    font-size: 1em;
    color: var(--color-text-secondary);
    flex-grow: 1;
    margin-bottom: 15px;
}

.page-promotions-cashback__link-text {
    color: var(--color-button-gradient-start);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.page-promotions-cashback__link-text:hover {
    color: var(--color-gold);
}

.page-promotions-cashback__eligibility-content {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
}

.page-promotions-cashback__text-block {
    flex: 1;
    color: var(--color-text-secondary);
}

.page-promotions-cashback__text-block h3 {
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.page-promotions-cashback__text-block ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-promotions-cashback__text-block li {
    margin-bottom: 10px;
    color: var(--color-text-secondary);
}

.page-promotions-cashback__text-block li strong {
    color: var(--color-text-main);
}

.page-promotions-cashback__image-block {
    flex: 1;
    min-width: 300px;
}

.page-promotions-cashback__image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: block;
}

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

.page-promotions-cashback__benefit-card {
    background-color: var(--color-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: var(--color-text-main);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-cashback__benefit-card img {
    
    
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.page-promotions-cashback__benefit-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--color-glow);
}

.page-promotions-cashback__benefit-card p {
    font-size: 1em;
    color: var(--color-text-secondary);
    flex-grow: 1;
}

.page-promotions-cashback__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-promotions-cashback__faq-item {
    background-color: var(--color-background);
    border: 1px solid var(--color-divider);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--color-text-main);
}

.page-promotions-cashback__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--color-text-main);
    background-color: var(--color-card-bg);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.page-promotions-cashback__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-promotions-cashback__faq-item summary:hover {
    background-color: var(--color-deep-green);
}

.page-promotions-cashback__faq-qtext {
    flex-grow: 1;
}

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

.page-promotions-cashback__faq-item[open] .page-promotions-cashback__faq-toggle {
    content: "−";
}

.page-promotions-cashback__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.page-promotions-cashback__faq-answer p {
    margin-bottom: 10px;
}

.page-promotions-cashback__cta-final-section {
    background-color: var(--color-background);
    padding: 80px 0;
    text-align: center;
}

.page-promotions-cashback__cta-final-section p {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-promotions-cashback__hero-content {
        padding: 0 15px;
    }

    .page-promotions-cashback__eligibility-content {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-cashback__image-block {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-promotions-cashback__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-promotions-cashback__description {
        font-size: 1em;
    }

    .page-promotions-cashback__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-cashback__btn-primary,
    .page-promotions-cashback__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions-cashback__intro-section,
    .page-promotions-cashback__types-section,
    .page-promotions-cashback__benefits-section,
    .page-promotions-cashback__cta-final-section,
    .page-promotions-cashback__how-it-works-section,
    .page-promotions-cashback__eligibility-section,
    .page-promotions-cashback__faq-section {
        padding: 50px 0;
    }

    .page-promotions-cashback__container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions-cashback__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-bottom: 30px;
    }

    .page-promotions-cashback__steps,
    .page-promotions-cashback__offer-grid,
    .page-promotions-cashback__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-cashback__step-card img,
    .page-promotions-cashback__offer-card img,
    .page-promotions-cashback__image-block img,
    .page-promotions-cashback__benefit-card img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions-cashback__step-card img[width="200"][height="200"],
    .page-promotions-cashback__benefit-card img[width="200"][height="200"] {
         /* Keep smaller size for icons, but ensure min 200px display */
        
        
        object-fit: contain;
    }

    .page-promotions-cashback__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }

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

    .page-promotions-cashback__text-block ul {
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback__hero-section {
        padding: 30px 10px;
        padding-top: 10px !important;
    }

    .page-promotions-cashback__main-title {
        font-size: clamp(1.6em, 8vw, 2.2em);
    }

    .page-promotions-cashback__description {
        font-size: 0.95em;
    }

    .page-promotions-cashback__container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .page-promotions-cashback__section-title {
        font-size: clamp(1.3em, 7vw, 1.8em);
    }

    .page-promotions-cashback__faq-item summary {
        font-size: 0.95em;
    }
}