/* style/promotions-cashback-offers.css */

/* Custom Colors */
: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;
}

.page-promotions-cashback-offers {
    font-family: Arial, sans-serif;
    color: var(--color-text-main); /* Default text color for the page content */
    background-color: var(--color-background); /* Overall page background */
}

.page-promotions-cashback-offers__dark-bg {
    background-color: var(--color-background);
    color: var(--color-text-main);
}

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

.page-promotions-cashback-offers__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Match hero image width */
    margin-bottom: 30px;
}

.page-promotions-cashback-offers__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-cashback-offers__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: -80px; /* Pull content slightly over the image for visual flow */
    padding: 30px;
    background-color: rgba(17, 39, 27, 0.85); /* Slightly transparent card background */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-border);
}

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

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

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

.page-promotions-cashback-offers__cta-buttons--center {
    margin-top: 40px;
}

.page-promotions-cashback-offers__btn-primary,
.page-promotions-cashback-offers__btn-secondary,
.page-promotions-cashback-offers__btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

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

.page-promotions-cashback-offers__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, var(--color-button-gradient-end) 0%, var(--color-button-gradient-start) 100%);
}

.page-promotions-cashback-offers__btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback-offers__btn-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback-offers__btn-tertiary {
    background-color: var(--color-deep-green);
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
    padding: 10px 20px;
    font-size: 0.95rem;
    margin-top: auto; /* Push to bottom of card */
}

.page-promotions-cashback-offers__btn-tertiary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.page-promotions-cashback-offers__section {
    padding: 80px 20px;
    border-bottom: 1px solid var(--color-divider);
}

.page-promotions-cashback-offers__section:last-of-type {
    border-bottom: none;
}

.page-promotions-cashback-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-promotions-cashback-offers__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--color-text-main);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-cashback-offers__description-secondary {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-promotions-cashback-offers__content-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-promotions-cashback-offers__text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
}

.page-promotions-cashback-offers__text-block h3 {
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-cashback-offers__image-inline {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback-offers__card-section {
    background-color: var(--color-background);
}

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

.page-promotions-cashback-offers__card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-cashback-offers__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-cashback-offers__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-promotions-cashback-offers__card-title {
    font-size: 1.6rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions-cashback-offers__card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-cashback-offers__list {
    list-style: none;
    padding: 0;
    margin: 50px 0;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-promotions-cashback-offers__list-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback-offers__list-title {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions-cashback-offers__list-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.page-promotions-cashback-offers__faq-section {
    padding-bottom: 80px;
}

.page-promotions-cashback-offers__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-promotions-cashback-offers__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback-offers__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: var(--color-deep-green);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-promotions-cashback-offers__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions-cashback-offers__faq-question:hover {
    background-color: var(--color-primary);
}

.page-promotions-cashback-offers__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-promotions-cashback-offers__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions-cashback-offers__faq-item[open] .page-promotions-cashback-offers__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions-cashback-offers__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    background-color: var(--color-card-bg);
    border-top: 1px solid var(--color-divider);
}

.page-promotions-cashback-offers__conclusion-section {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 100px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions-cashback-offers__hero-content {
        margin-top: -50px;
    }
    .page-promotions-cashback-offers__cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback-offers {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions-cashback-offers__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-promotions-cashback-offers__hero-content {
        margin-top: -30px; /* Adjust for smaller screens */
        padding: 20px;
    }
    .page-promotions-cashback-offers__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-promotions-cashback-offers__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-promotions-cashback-offers__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-cashback-offers__btn-primary,
    .page-promotions-cashback-offers__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }
    .page-promotions-cashback-offers__btn-tertiary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions-cashback-offers__section {
        padding: 50px 15px;
    }
    .page-promotions-cashback-offers__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-promotions-cashback-offers__section-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-promotions-cashback-offers__description-secondary {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .page-promotions-cashback-offers__image-inline,
    .page-promotions-cashback-offers__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-promotions-cashback-offers__cards-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-cashback-offers__list {
        grid-template-columns: 1fr;
    }
    .page-promotions-cashback-offers__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-promotions-cashback-offers__faq-answer {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback-offers__hero-content {
        margin-top: -20px;
        padding: 15px;
    }
    .page-promotions-cashback-offers__main-title {
        font-size: clamp(1.6rem, 9vw, 2rem);
    }
    .page-promotions-cashback-offers__description {
        font-size: 0.9rem;
    }
    .page-promotions-cashback-offers__btn-primary,
    .page-promotions-cashback-offers__btn-secondary {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    .page-promotions-cashback-offers__section-title {
        font-size: clamp(1.4rem, 8vw, 1.8rem);
    }
}