/* style/promotions-cashback-offers.css */
.page-promotions-cashback-offers {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333; /* Dark grey for main text on light backgrounds */
    background-color: #f8f9fa; /* Very light grey background */
}

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

/* Hero Section */
.page-promotions-cashback-offers__hero {
    background: linear-gradient(135deg, #007bff, #4da3ff); /* Adjusted gradient for better visual */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-cashback-offers__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('[GALLERY:bg:abstract,geometric,patterns,blue,gold]') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-cashback-offers__hero > .page-promotions-cashback-offers__container {
    position: relative;
    z-index: 1;
}

.page-promotions-cashback-offers__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-promotions-cashback-offers__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-cashback-offers__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* General Section Styles */
.page-promotions-cashback-offers__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-promotions-cashback-offers__section:nth-of-type(even) {
    background-color: #e9ecef; /* Slightly darker background for alternating sections */
}

.page-promotions-cashback-offers__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker blue for titles for better contrast */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-promotions-cashback-offers__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

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

/* Buttons */
.page-promotions-cashback-offers__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-cashback-offers__btn--primary {
    background-color: #007bff;
    color: #fff;
}

.page-promotions-cashback-offers__btn--primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-promotions-cashback-offers__btn--secondary {
    background-color: #ffc107;
    color: #333; /* Dark text on gold for contrast */
}

.page-promotions-cashback-offers__btn--secondary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

/* Highlight Text */
.page-promotions-cashback-offers .highlight {
    color: #ffc107; /* Gold highlight on dark backgrounds */
}
.page-promotions-cashback-offers__section--intro .highlight,
.page-promotions-cashback-offers__section--mechanism .highlight,
.page-promotions-cashback-offers__section--types .highlight,
.page-promotions-cashback-offers__section--how-to-claim .highlight,
.page-promotions-cashback-offers__section--terms .highlight,
.page-promotions-cashback-offers__section--why-choose .highlight,
.page-promotions-cashback-offers__section--cta-final .highlight {
    color: #007bff; /* Blue highlight on light backgrounds */
}


/* Inline Links */
.page-promotions-cashback-offers__inline-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.page-promotions-cashback-offers__inline-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Grid Layout for Mechanism Section */
.page-promotions-cashback-offers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-promotions-cashback-offers__grid-item {
    background-color: #fefefe;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-cashback-offers__grid-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: 600;
}

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

/* List Styles */
.page-promotions-cashback-offers__list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-promotions-cashback-offers__list li {
    background-color: #fefefe;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
}

.page-promotions-cashback-offers__list--bullet li {
    border-left: none;
    padding-left: 20px;
    position: relative;
}

.page-promotions-cashback-offers__list--bullet li::before {
    content: '•';
    color: #ffc107;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 15px;
    line-height: 1;
}

.page-promotions-cashback-offers__list-title {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 8px;
}

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

.page-promotions-cashback-offers__numbered-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin: 40px 0;
}

.page-promotions-cashback-offers__numbered-list li {
    counter-increment: step-counter;
    background-color: #fefefe;
    margin-bottom: 15px;
    padding: 20px 25px 20px 60px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
    position: relative;
}

.page-promotions-cashback-offers__numbered-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: #ffc107;
    color: #333;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1em;
}

/* Advantages List */
.page-promotions-cashback-offers__advantages-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-promotions-cashback-offers__advantages-list li {
    background-color: #fefefe;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-cashback-offers__advantages-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-cashback-offers__advantages-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: 600;
}

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

/* CTA Groups */
.page-promotions-cashback-offers__cta-group,
.page-promotions-cashback-offers__final-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Floating Promotion */
.page-promotions-cashback-offers__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffc107;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    animation: page-promotions-cashback-offers__float 2s ease-in-out infinite;
    cursor: pointer;
}

.page-promotions-cashback-offers__floating-text {
    margin: 0;
    font-weight: 700;
    font-size: 1.1em;
}

.page-promotions-cashback-offers__floating-btn {
    background-color: #007bff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-promotions-cashback-offers__floating-btn:hover {
    background-color: #0056b3;
}

@keyframes page-promotions-cashback-offers__float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}


/* 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.1em;
    }
    .page-promotions-cashback-offers__section-title {
        font-size: 2em;
    }
    .page-promotions-cashback-offers__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-promotions-cashback-offers__advantages-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback-offers__hero {
        padding: 80px 0 60px;
    }
    .page-promotions-cashback-offers__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-cashback-offers__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-cashback-offers__hero-cta-group,
    .page-promotions-cashback-offers__cta-group,
    .page-promotions-cashback-offers__final-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-cashback-offers__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-promotions-cashback-offers__section {
        padding: 40px 0;
    }
    .page-promotions-cashback-offers__section-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback-offers__list li,
    .page-promotions-cashback-offers__numbered-list li {
        padding-left: 20px;
        border-left: none;
    }
    .page-promotions-cashback-offers__numbered-list li::before {
        left: 0;
    }
    .page-promotions-cashback-offers__floating-promo {
        bottom: 15px;
        right: 15px;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
        gap: 10px;
    }
    .page-promotions-cashback-offers__floating-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback-offers__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback-offers__section-title {
        font-size: 1.5em;
    }
    .page-promotions-cashback-offers__text-content,
    .page-promotions-cashback-offers__grid-description,
    .page-promotions-cashback-offers__list-description,
    .page-promotions-cashback-offers__advantages-description {
        font-size: 0.95em;
    }
}