/* style/promotions-cashback-offers.css */

/* General Styling for the page-promotions-cashback-offers scope */
.page-promotions-cashback-offers {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark backgrounds */
    background-color: #0A244A; /* Main background color */
    line-height: 1.6;
}

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

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

.page-promotions-cashback-offers__section:nth-of-type(even) {
    background-color: #0C2E55;
}

.page-promotions-cashback-offers__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions-cashback-offers__section-title--light {
    color: #FFFFFF;
}

.page-promotions-cashback-offers__text {
    font-size: 1.1em;
    color: #E0E0E0; /* Light gray for body text */
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-cashback-offers__text--light {
    color: #FFFFFF;
}

.page-promotions-cashback-offers__text strong {
    color: #FFD700;
}

.page-promotions-cashback-offers__inline-link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions-cashback-offers__inline-link:hover {
    color: #FFF;
}

.page-promotions-cashback-offers__inline-link--light {
    color: #FFFFFF;
}

.page-promotions-cashback-offers__inline-link--light:hover {
    color: #FFD700;
}

/* Buttons */
.page-promotions-cashback-offers__button {
    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;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-promotions-cashback-offers__button--primary {
    background-color: #FFD700;
    color: #0A244A;
}

.page-promotions-cashback-offers__button--primary:hover {
    background-color: #E6C200;
    color: #000;
}

.page-promotions-cashback-offers__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-cashback-offers__button--secondary:hover {
    background-color: #FFD700;
    color: #0A244A;
}

/* Hero Section */
.page-promotions-cashback-offers__hero {
    position: relative;
    background: linear-gradient(135deg, #0A244A 0%, #0C2E55 100%);
    padding: 100px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-promotions-cashback-offers__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.page-promotions-cashback-offers__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-cashback-offers__hero-subtitle {
    font-size: 1.4em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-cashback-offers__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

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

.page-promotions-cashback-offers__advantage-item {
    background-color: #0C2E55;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-promotions-cashback-offers__advantage-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-cashback-offers__advantage-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-cashback-offers__advantage-description {
    font-size: 1em;
    color: #E0E0E0;
}

/* How It Works Section */
.page-promotions-cashback-offers__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.page-promotions-cashback-offers__step-item {
    background-color: #0C2E55;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback-offers__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-cashback-offers__step-description {
    font-size: 1em;
    color: #E0E0E0;
}

.page-promotions-cashback-offers__image-full-width {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Get Cashback Section (Numbered List) */
.page-promotions-cashback-offers__numbered-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
}

.page-promotions-cashback-offers__numbered-list li {
    background-color: #0C2E55;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.page-promotions-cashback-offers__numbered-list li h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-cashback-offers__numbered-list li p {
    font-size: 1em;
    color: #E0E0E0;
}

.page-promotions-cashback-offers__cta-box {
    background-color: #FFD700;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
    color: #0A244A;
}

.page-promotions-cashback-offers__cta-text {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #0A244A;
}

/* Cashback Types Section */
.page-promotions-cashback-offers__type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-cashback-offers__type-item {
    background-color: #0C2E55;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-promotions-cashback-offers__type-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-cashback-offers__type-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-cashback-offers__type-description {
    font-size: 1em;
    color: #E0E0E0;
}

/* Why Choose Section */
.page-promotions-cashback-offers__bullet-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-cashback-offers__bullet-list li {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-promotions-cashback-offers__bullet-list li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-promotions-cashback-offers__bullet-list li strong {
    color: #FFD700;
}

/* FAQ Section */
.page-promotions-cashback-offers__faq {
    background-color: #0C2E55;
}

.page-promotions-cashback-offers__faq-item {
    background-color: #0A244A;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback-offers__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-cashback-offers__faq-answer {
    font-size: 1em;
    color: #E0E0E0;
    display: block; /* Ensure answer is visible by default for simplicity */
    margin-top: 10px;
}

/* CTA Download Section */
.page-promotions-cashback-offers__cta-download {
    background-color: #0A244A;
    background-image: url('[IMAGE:app_promo_bg]'); /* Example for a subtle background image */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}

.page-promotions-cashback-offers__cta-download-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.page-promotions-cashback-offers__cta-download-text-content {
    max-width: 700px;
}

.page-promotions-cashback-offers__cta-download-image-content {
    flex-shrink: 0;
}

.page-promotions-cashback-offers__qr-code {
    width: 200px;
    height: 200px;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Conclusion Section */
.page-promotions-cashback-offers__conclusion .page-promotions-cashback-offers__button {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-cashback-offers__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-cashback-offers__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-cashback-offers__section-title {
        font-size: 2.2em;
    }
    .page-promotions-cashback-offers__cta-download-inner {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback-offers__hero {
        padding: 80px 15px;
        min-height: 400px;
    }
    .page-promotions-cashback-offers__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-cashback-offers__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-cashback-offers__section {
        padding: 40px 0;
    }
    .page-promotions-cashback-offers__section-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback-offers__text,
    .page-promotions-cashback-offers__advantage-description,
    .page-promotions-cashback-offers__step-description,
    .page-promotions-cashback-offers__numbered-list li p,
    .page-promotions-cashback-offers__type-description,
    .page-promotions-cashback-offers__bullet-list li,
    .page-promotions-cashback-offers__faq-answer {
        font-size: 0.95em;
    }
    .page-promotions-cashback-offers__advantage-item,
    .page-promotions-cashback-offers__step-item,
    .page-promotions-cashback-offers__type-item,
    .page-promotions-cashback-offers__faq-item {
        padding: 20px;
    }
    .page-promotions-cashback-offers__numbered-list li h3 {
        font-size: 1.4em;
    }
    .page-promotions-cashback-offers__faq-question {
        font-size: 1.2em;
    }
    .page-promotions-cashback-offers__qr-code {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback-offers__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback-offers__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-cashback-offers__section-title {
        font-size: 1.5em;
    }
    .page-promotions-cashback-offers__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions-cashback-offers__advantage-item,
    .page-promotions-cashback-offers__step-item,
    .page-promotions-cashback-offers__type-item,
    .page-promotions-cashback-offers__faq-item {
        padding: 15px;
    }
    .page-promotions-cashback-offers__advantage-title,
    .page-promotions-cashback-offers__step-title,
    .page-promotions-cashback-offers__type-title,
    .page-promotions-cashback-offers__numbered-list li h3,
    .page-promotions-cashback-offers__faq-question {
        font-size: 1.1em;
    }
}