/* style/promotions-cashback.css */
.page-promotions-cashback {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light text for dark background */
    line-height: 1.6;
    background-color: #0d123e; /* Darker variant of main color for overall background */
}

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

.page-promotions-cashback__hero {
    background: linear-gradient(135deg, #1A237E 0%, #0d123e 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

.page-promotions-cashback__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    padding-left: 50px;
}

.page-promotions-cashback__hero-title {
    font-size: 3.5em;
    color: #FFC107; /* Auxiliary color for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions-cashback__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-promotions-cashback__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 50px;
}

.page-promotions-cashback__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__section {
    padding: 60px 0;
    background-color: #1A237E; /* Main color for sections */
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__section-title {
    font-size: 2.5em;
    color: #FFC107; /* Auxiliary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-promotions-cashback__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.page-promotions-cashback__text--highlight {
    font-weight: bold;
    color: #FFC107;
    text-align: center;
    margin-top: 30px;
}

.page-promotions-cashback__text--note {
    font-style: italic;
    color: #bdbdbd;
    font-size: 0.95em;
    margin-top: 25px;
}

.page-promotions-cashback__list,
.page-promotions-cashback__steps-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-promotions-cashback__list li,
.page-promotions-cashback__steps-list li {
    background-color: #2a3487; /* Slightly lighter main color for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 40px;
}

.page-promotions-cashback__list li strong,
.page-promotions-cashback__steps-list li strong {
    color: #FFC107;
}

.page-promotions-cashback__steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #FFC107;
    color: #1A237E;
    font-weight: bold;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9em;
}

.page-promotions-cashback__image-full-width {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 20px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-cashback__card {
    background-color: #2a3487; /* Slightly lighter main color */
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-cashback__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(35deg) brightness(110%) contrast(100%); /* Gold effect */
}

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

.page-promotions-cashback__card-text {
    color: #e0e0e0;
    font-size: 1em;
}

.page-promotions-cashback__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.page-promotions-cashback__btn--primary {
    background-color: #FFC107;
    color: #1A237E;
}

.page-promotions-cashback__btn--primary:hover {
    background-color: #e5ac00;
    transform: translateY(-2px);
}

.page-promotions-cashback__btn--secondary {
    background-color: #1A237E;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-promotions-cashback__btn--secondary:hover {
    background-color: #2a3487;
    transform: translateY(-2px);
}

.page-promotions-cashback__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-promotions-cashback__grid--benefits {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    text-align: center;
}

.page-promotions-cashback__benefit-item {
    background-color: #2a3487;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-cashback__benefit-item h3 {
    color: #FFC107;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-promotions-cashback__benefit-item p {
    color: #e0e0e0;
    font-size: 0.95em;
}

.page-promotions-cashback__benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(35deg) brightness(110%) contrast(100%); /* Gold effect */
}

.page-promotions-cashback__faq {
    background-color: #0d123e;
    padding: 60px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__faq-item {
    background-color: #1A237E;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-promotions-cashback__faq-question {
    padding: 20px;
    color: #FFC107;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.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 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #e0e0e0;
}

.page-promotions-cashback__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 20px;
}

.page-promotions-cashback__cta {
    background: linear-gradient(45deg, #1A237E, #FFC107);
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__cta-content {
    max-width: 800px;
}

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

.page-promotions-cashback__cta-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-promotions-cashback__cta-small-text {
    font-size: 0.9em;
    color: #f8f8f8;
    margin-top: 20px;
}

.page-promotions-cashback__cta-small-text a {
    color: #FFC107;
    text-decoration: underline;
}

.page-promotions-cashback__cta-small-text a:hover {
    color: #e5ac00;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-cashback__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .page-promotions-cashback__hero-content,
    .page-promotions-cashback__hero-image-wrapper {
        padding: 0 20px;
    }

    .page-promotions-cashback__hero-title {
        font-size: 2.8em;
    }

    .page-promotions-cashback__section-title {
        font-size: 2em;
    }

    .page-promotions-cashback__cta-title {
        font-size: 2.2em;
    }

    .page-promotions-cashback__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback__hero-title {
        font-size: 2.2em;
    }

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

    .page-promotions-cashback__section {
        padding: 40px 0;
    }

    .page-promotions-cashback__section-title {
        font-size: 1.8em;
    }

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

    .page-promotions-cashback__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-cashback__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-promotions-cashback__cta-title {
        font-size: 1.8em;
    }

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

@media (max-width: 480px) {
    .page-promotions-cashback__hero-title {
        font-size: 1.8em;
    }

    .page-promotions-cashback__section-title {
        font-size: 1.5em;
    }

    .page-promotions-cashback__cta-title {
        font-size: 1.6em;
    }

    .page-promotions-cashback__hero-content,
    .page-promotions-cashback__hero-image-wrapper {
        padding: 0 15px;
    }

    .page-promotions-cashback__container {
        padding: 0 15px;
    }

    .page-promotions-cashback__list li, .page-promotions-cashback__steps-list li {
        padding-left: 35px;
        font-size: 0.9em;
    }

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

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