/* style/promotions-cashback.css */
.page-promotions-cashback {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-promotions-cashback .highlight {
    color: #007BFF;
    font-weight: bold;
}

.page-promotions-cashback__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #ffffff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.page-promotions-cashback__hero-content {
    max-width: 900px;
    z-index: 1;
}

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

.page-promotions-cashback__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-cashback__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-promotions-cashback__btn--primary {
    background-color: #FFC107;
    color: #0056b3;
    border: 2px solid #FFC107;
}

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

.page-promotions-cashback__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.page-promotions-cashback__hero-image-wrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
}

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

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

.page-promotions-cashback__section {
    padding: 60px 0;
    text-align: center;
}

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

.page-promotions-cashback__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007BFF;
}

.page-promotions-cashback__section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

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

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

.page-promotions-cashback__feature-icon, .page-promotions-cashback__benefit-icon, .page-promotions-cashback__why-choose-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-cashback__feature-heading, .page-promotions-cashback__benefit-heading, .page-promotions-cashback__why-choose-heading {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-promotions-cashback__feature-text, .page-promotions-cashback__benefit-text, .page-promotions-cashback__why-choose-text {
    color: #666;
}

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

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

.page-promotions-cashback__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    padding-top: 70px;
}

.page-promotions-cashback__step-number {
    counter-increment: step-counter;
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 2.5em;
    font-weight: bold;
    color: #FFC107;
    background-color: #007BFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.page-promotions-cashback__step-heading {
    font-size: 1.4em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-promotions-cashback__step-text {
    color: #666;
}

.page-promotions-cashback__step-text a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-cashback__step-text a:hover {
    text-decoration: underline;
}

.page-promotions-cashback__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-cashback__faq-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-promotions-cashback__faq-question {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-cashback__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

.page-promotions-cashback__faq-answer {
    color: #666;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-promotions-cashback__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    opacity: 1;
    margin-top: 15px;
}

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

.page-promotions-cashback__why-choose-item {
    background-color: #007BFF;
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-cashback__why-choose-item:hover {
    transform: translateY(-5px);
    background-color: #0056b3;
}

.page-promotions-cashback__why-choose-icon {
    filter: brightness(0) invert(1); /* Makes icon white */
}

.page-promotions-cashback__why-choose-heading {
    color: #FFC107;
}

.page-promotions-cashback__why-choose-text {
    color: #e0e0e0;
}

.page-promotions-cashback__call-to-action {
    background-color: #007BFF;
    color: #ffffff;
    padding: 80px 20px;
    border-radius: 20px 20px 0 0;
    margin-top: 40px;
}

.page-promotions-cashback__call-to-action .page-promotions-cashback__section-title {
    color: #FFC107;
}

.page-promotions-cashback__call-to-action .page-promotions-cashback__section-description {
    color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-cashback__hero-title {
        font-size: 2.8em;
    }

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

    .page-promotions-cashback__feature-grid, .page-promotions-cashback__benefit-grid, .page-promotions-cashback__guide-steps, .page-promotions-cashback__why-choose-list {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback__hero {
        padding: 60px 15px;
    }

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

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

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

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

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

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

    .page-promotions-cashback__feature-grid, .page-promotions-cashback__benefit-grid, .page-promotions-cashback__guide-steps, .page-promotions-cashback__why-choose-list {
        grid-template-columns: 1fr;
    }

    .page-promotions-cashback__hero-actions, .page-promotions-cashback__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-cashback__step-item {
        padding: 25px;
        padding-top: 60px;
    }

    .page-promotions-cashback__step-number {
        width: 45px;
        height: 45px;
        font-size: 2.2em;
        left: 25px;
        top: 15px;
    }

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

    .page-promotions-cashback__faq-question {
        font-size: 1.1em;
    }
}

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