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

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

.page-promotions-cashback-rules__hero-section {
    background: linear-gradient(135deg, #0047AB, #00287A);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-cashback-rules__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,gold_blue_gradient,luxury_texture]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-cashback-rules__hero-section > * {
    position: relative;
    z-index: 1;
}

.page-promotions-cashback-rules__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-cashback-rules__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #0047AB; /* Dark blue */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-cashback-rules__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-promotions-cashback-rules__cta-button--small {
    padding: 10px 25px;
    font-size: 0.9em;
}

.page-promotions-cashback-rules__cta-button--large {
    padding: 18px 45px;
    font-size: 1.2em;
}

.page-promotions-cashback-rules__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-promotions-cashback-rules__section-title {
    font-size: 2.5em;
    color: #0047AB; /* Dark blue */
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

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

.page-promotions-cashback-rules__sub-section-title {
    font-size: 1.8em;
    color: #0047AB; /* Dark blue */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding-left: 15px;
}

.page-promotions-cashback-rules p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333;
}

.page-promotions-cashback-rules ul,
.page-promotions-cashback-rules ol {
    margin-bottom: 20px;
    padding-left: 30px;
    color: #333333;
}

.page-promotions-cashback-rules li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-promotions-cashback-rules__formula {
    background-color: #f0f8ff;
    border-left: 5px solid #0047AB;
    padding: 15px;
    margin: 20px 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #0047AB;
    border-radius: 5px;
}

.page-promotions-cashback-rules__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-promotions-cashback-rules__faq {
    margin-top: 40px;
}

.page-promotions-cashback-rules__faq-item {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-cashback-rules__faq-question {
    background-color: #0047AB;
    color: #ffffff;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-cashback-rules__faq-question:hover {
    background-color: #00287A;
}

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

.page-promotions-cashback-rules__faq-item.active .page-promotions-cashback-rules__faq-question::after {
    transform: rotate(45deg);
}

.page-promotions-cashback-rules__faq-answer {
    padding: 15px 25px;
    background-color: #ffffff;
    border-top: 1px solid #eee;
    display: none;
    font-size: 1.05em;
    color: #555555;
}

.page-promotions-cashback-rules__faq-item.active .page-promotions-cashback-rules__faq-answer {
    display: block;
}

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

    .page-promotions-cashback-rules__subtitle {
        font-size: 1.1em;
    }

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

    .page-promotions-cashback-rules__sub-section-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback-rules__hero-section {
        padding: 80px 0;
    }

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

    .page-promotions-cashback-rules__subtitle {
        font-size: 1em;
    }

    .page-promotions-cashback-rules__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .page-promotions-cashback-rules__content-section {
        padding: 40px 0;
    }

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

    .page-promotions-cashback-rules__sub-section-title {
        font-size: 1.3em;
    }

    .page-promotions-cashback-rules p,
    .page-promotions-cashback-rules li {
        font-size: 0.95em;
    }

    .page-promotions-cashback-rules__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions-cashback-rules__faq-answer {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback-rules__hero-section {
        padding: 60px 0;
    }

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

    .page-promotions-cashback-rules__subtitle {
        font-size: 0.9em;
    }

    .page-promotions-cashback-rules__cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }

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

    .page-promotions-cashback-rules__sub-section-title {
        font-size: 1.2em;
    }

    .page-promotions-cashback-rules p,
    .page-promotions-cashback-rules li {
        font-size: 0.9em;
    }

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

    .page-promotions-cashback-rules__faq-answer {
        padding: 8px 15px;
        font-size: 0.85em;
    }
}