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

.page-promotions-cashback-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-cashback-hero {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for better contrast */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-cashback-hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-promotions-cashback-hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e9ecef;
}

.page-promotions-cashback-hero-btn {
    display: inline-block;
    background-color: #ffc107; /* Auxiliary color */
    color: #333; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback-hero-btn:hover {
    background-color: #e0a800; /* Darker yellow on hover */
    transform: translateY(-3px);
}

.page-promotions-cashback-hero-image-wrapper {
    position: absolute;
    bottom: -20px;
    right: -50px;
    width: 300px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
    display: none; /* Hide on small screens */
}

.page-promotions-cashback-hero-image {
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .page-promotions-cashback-hero-image-wrapper {
        display: block;
    }
}

.page-promotions-cashback-intro, 
.page-promotions-cashback-types, 
.page-promotions-cashback-how-it-works, 
.page-promotions-cashback-benefits, 
.page-promotions-cashback-faq, 
.page-promotions-cashback-cta {
    padding: 60px 0;
}

.page-promotions-cashback-section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-promotions-cashback-text-block a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

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

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

.page-promotions-cashback-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-promotions-cashback-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #007bff; /* Primary color for icons */
}

.page-promotions-cashback-card-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-cashback-card-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-cashback-card-btn {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions-cashback-card-btn:hover {
    background-color: #e0a800;
}

.page-promotions-cashback-how-it-works ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.page-promotions-cashback-how-it-works li {
    margin-bottom: 30px;
    position: relative;
    padding-left: 70px;
}

.page-promotions-cashback-how-it-works li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #007bff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-promotions-cashback-how-it-works h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-promotions-cashback-how-it-works p {
    color: #495057;
}

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

.page-promotions-cashback-benefits li {
    background-color: #fff;
    border-left: 5px solid #ffc107;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.page-promotions-cashback-list-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: #007bff;
}

.page-promotions-cashback-benefits h3 {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-promotions-cashback-benefits p {
    color: #555;
}

.page-promotions-cashback-faq {
    background-color: #e9ecef;
}

.page-promotions-cashback-accordion-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-promotions-cashback-accordion-header {
    padding: 20px 25px;
    font-size: 1.3em;
    color: #007bff;
    cursor: pointer;
    position: relative;
    margin: 0;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions-cashback-accordion-header:hover {
    background-color: #f1f1f1;
}

.page-promotions-cashback-accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #ffc107;
    transition: transform 0.3s ease;
}

.page-promotions-cashback-accordion-header.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-cashback-accordion-content {
    padding: 0 25px 20px;
    font-size: 1.05em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-cashback-accordion-content p {
    margin-bottom: 0;
}

.page-promotions-cashback-cta {
    background: linear-gradient(45deg, #007bff, #ffc107);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 15px;
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback-cta-btn {
    display: inline-block;
    background-color: #333; /* Dark button for contrast */
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback-cta-btn:hover {
    background-color: #000;
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-cashback-hero-title {
        font-size: 2.5em;
    }
    .page-promotions-cashback-hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-cashback-section-title {
        font-size: 2em;
    }
    .page-promotions-cashback-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-cashback-how-it-works li {
        padding-left: 60px;
    }
    .page-promotions-cashback-how-it-works li::before {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-promotions-cashback-benefits ul {
        grid-template-columns: 1fr;
    }
    .page-promotions-cashback-cta {
        margin: 40px 15px;
        padding: 60px 20px;
    }
    .page-promotions-cashback-cta-btn {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback-hero-title {
        font-size: 2em;
    }
    .page-promotions-cashback-hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-cashback-hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-cashback-section-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback-card-title {
        font-size: 1.5em;
    }
    .page-promotions-cashback-accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-cashback-accordion-header::after {
        right: 15px;
    }
    .page-promotions-cashback-accordion-content {
        padding: 0 20px 15px;
    }
}