/* style/promotions-cashback.css */
.page-promotions-cashback {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A192F; /* Midnight Blue */
    line-height: 1.6;
}

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

.page-promotions-cashback__link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-cashback__link:hover {
    color: #FFF; /* White on hover */
}

.page-promotions-cashback__highlight {
    color: #FFD700;
}

.page-promotions-cashback__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-promotions-cashback__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Midnight Blue */
    border: 2px solid #FFD700;
}

.page-promotions-cashback__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    color: #000;
}

.page-promotions-cashback__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-promotions-cashback__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

/* Hero Section */
.page-promotions-cashback__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-promotions-cashback__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-promotions-cashback__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-promotions-cashback__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.page-promotions-cashback__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* General Section Styling */
.page-promotions-cashback__section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-promotions-cashback__section:nth-of-type(even) {
    background-color: #122A45;
}

.page-promotions-cashback__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-promotions-cashback__text {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #E0E0E0;
}

.page-promotions-cashback__text--center {
    text-align: center;
}

/* Benefits Section */
.page-promotions-cashback__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-promotions-cashback__benefit-item {
    background-color: #122A45;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-cashback__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-cashback__benefit-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-cashback__benefit-description {
    color: #B0B0B0;
}

/* Accordion Styling */
.page-promotions-cashback__accordion {
    margin-top: 30px;
}

.page-promotions-cashback__accordion-item {
    background-color: #122A45;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-cashback__accordion-header {
    padding: 20px 25px;
    background-color: #1a3a60;
    color: #FFD700;
    font-size: 1.4em;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-cashback__accordion-header:hover {
    background-color: #2a4c70;
}

.page-promotions-cashback__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-cashback__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-cashback__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-cashback__accordion-content.active {
    max-height: 800px; /* Adjust as needed */
    padding: 25px;
}

.page-promotions-cashback__content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-promotions-cashback__list li {
    margin-bottom: 10px;
}

.page-promotions-cashback__list li strong {
    color: #FFD700;
}

/* How-To Steps */
.page-promotions-cashback__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 30px;
}

.page-promotions-cashback__steps-list li {
    background-color: #122A45;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 70px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-cashback__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: #FFD700;
    color: #0A192F;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-promotions-cashback__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

/* FAQ Section */
.page-promotions-cashback__faq-accordion {
    margin-top: 30px;
}

.page-promotions-cashback__faq-item {
    background-color: #122A45;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-cashback__faq-question {
    padding: 20px 25px;
    background-color: #1a3a60;
    color: #FFD700;
    font-size: 1.3em;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-cashback__faq-question:hover {
    background-color: #2a4c70;
}

.page-promotions-cashback__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-cashback__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-cashback__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-cashback__faq-answer.active {
    max-height: 500px; /* Adjust as needed */
    padding: 25px;
}

/* CTA Section */
.page-promotions-cashback__cta {
    background: linear-gradient(45deg, #0A192F, #304e70);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-cashback__cta-content {
    position: relative;
    z-index: 2;
}

.page-promotions-cashback__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-promotions-cashback__cta-description {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-cashback__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
    filter: grayscale(100%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-cashback__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-cashback__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-cashback__section-title {
        font-size: 2em;
    }
    .page-promotions-cashback__cta-title {
        font-size: 2.2em;
    }
    .page-promotions-cashback__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback__hero {
        padding: 60px 0;
    }
    .page-promotions-cashback__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-cashback__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-cashback__section {
        padding: 40px 0;
    }
    .page-promotions-cashback__section-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__text {
        font-size: 1em;
    }
    .page-promotions-cashback__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-cashback__accordion-header, .page-promotions-cashback__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page-promotions-cashback__accordion-content.active, .page-promotions-cashback__faq-answer.active {
        padding: 20px;
    }
    .page-promotions-cashback__steps-list li {
        padding-left: 60px;
    }
    .page-promotions-cashback__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
        top: 15px;
    }
    .page-promotions-cashback__step-title {
        font-size: 1.4em;
    }
    .page-promotions-cashback__cta {
        padding: 60px 0;
    }
    .page-promotions-cashback__cta-title {
        font-size: 2em;
    }
    .page-promotions-cashback__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-cashback__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-cashback__section-title {
        font-size: 1.6em;
    }
    .page-promotions-cashback__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-cashback__accordion-header, .page-promotions-cashback__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
    }
    .page-promotions-cashback__accordion-content.active, .page-promotions-cashback__faq-answer.active {
        padding: 15px;
    }
    .page-promotions-cashback__step-title {
        font-size: 1.2em;
    }
    .page-promotions-cashback__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__cta-description {
        font-size: 1em;
    }
}