/* 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__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-promotions-cashback__section:nth-child(even) {
    background-color: #f0f2f5;
}

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

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

.page-promotions-cashback__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-promotions-cashback__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-promotions-cashback__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
    transform: scale(1.1);
}

.page-promotions-cashback__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-cashback__sub-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-promotions-cashback__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-promotions-cashback__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #555;
}

.page-promotions-cashback__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-promotions-cashback__btn--primary {
    background-color: #FFD700;
    color: #0056b3;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-cashback__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-cashback__btn--secondary {
    background-color: #007BFF;
    color: #fff;
    border: 2px solid #007BFF;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    margin-left: 15px;
}

.page-promotions-cashback__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

.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 6px 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;
    justify-content: space-between;
}

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

.page-promotions-cashback__card-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-cashback__card-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-cashback__card-text {
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions-cashback__formula {
    background-color: #e9f5ff;
    border-left: 5px solid #007BFF;
    padding: 20px;
    margin: 25px 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #0056b3;
    border-radius: 5px;
}

.page-promotions-cashback__image-full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions-cashback__cta {
    background: linear-gradient(90deg, #007BFF, #FFD700);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-promotions-cashback__cta .page-promotions-cashback__section-title {
    color: #fff;
}

.page-promotions-cashback__cta .page-promotions-cashback__section-title::after {
    background-color: #fff;
}

.page-promotions-cashback__cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions-cashback__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.page-promotions-cashback__faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-promotions-cashback__faq-question {
    font-size: 1.4em;
    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;
    margin-left: 10px;
    color: #FFD700;
    font-weight: bold;
}

.page-promotions-cashback__faq-question.active::after {
    content: '-';
}

.page-promotions-cashback__faq-answer {
    font-size: 1.1em;
    color: #666;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: none;
}

.page-promotions-cashback__faq-answer.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-cashback__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-cashback__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-cashback__section-title {
        font-size: 2em;
    }
    .page-promotions-cashback__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-promotions-cashback__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions-cashback__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-cashback__btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback__hero {
        padding: 80px 0;
    }
    .page-promotions-cashback__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-cashback__section {
        padding: 40px 0;
    }
    .page-promotions-cashback__section-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__sub-title {
        font-size: 1.5em;
    }
    .page-promotions-cashback__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-promotions-cashback__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-cashback__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-cashback__list li, .page-promotions-cashback__faq-answer {
        font-size: 0.95em;
    }
    .page-promotions-cashback__formula {
        font-size: 1em;
        padding: 15px;
    }
    .page-promotions-cashback__cta p {
        font-size: 1em;
    }
}