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

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

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

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

.page-promotions-cashback-offer__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #fff;
}

.page-promotions-cashback-offer__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-promotions-cashback-offer__hero-image {
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-promotions-cashback-offer__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker blue for headings */
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
    position: relative;
}

.page-promotions-cashback-offer__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-cashback-offer__introduction-section,
.page-promotions-cashback-offer__details-section,
.page-promotions-cashback-offer__terms-section,
.page-promotions-cashback-offer__advantages-section,
.page-promotions-cashback-offer__responsible-gambling-section,
.page-promotions-cashback-offer__cta-final-section {
    padding: 60px 0;
}

.page-promotions-cashback-offer__introduction-section {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

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

.page-promotions-cashback-offer__cta-button {
    display: inline-block;
    background-color: #ffc107; /* Auxiliary color for CTA */
    color: #000; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-cashback-offer__cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-promotions-cashback-offer__cta-button--secondary {
    background-color: #007bff;
    color: #ffffff;
    margin-left: 15px;
}

.page-promotions-cashback-offer__cta-button--secondary:hover {
    background-color: #0056b3;
}

.page-promotions-cashback-offer__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 30px;
}

.page-promotions-cashback-offer__how-it-works-section {
    background-color: #f1f7fe; /* Light blue background */
    text-align: center;
}

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

.page-promotions-cashback-offer__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-cashback-offer__step-item:hover {
    transform: translateY(-5px);
}

.page-promotions-cashback-offer__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #007bff;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-cashback-offer__step-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-cashback-offer__step-description {
    color: #555;
    font-size: 0.95em;
    flex-grow: 1;
}

.page-promotions-cashback-offer__step-cta {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-promotions-cashback-offer__step-cta:hover {
    background-color: #0056b3;
}

.page-promotions-cashback-offer__process-image {
    max-width: 80%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-cashback-offer__details-section {
    background-color: #ffffff;
}

.page-promotions-cashback-offer__cashback-type {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-promotions-cashback-offer__type-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
    text-align: left;
}

.page-promotions-cashback-offer__type-description {
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-cashback-offer__cashback-type ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
}

.page-promotions-cashback-offer__cashback-type ul li {
    background-color: #e9f5ff; /* Lightest blue for list items */
    border-left: 4px solid #007bff;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #333;
    font-size: 0.95em;
}

.page-promotions-cashback-offer__cashback-type ul li strong {
    color: #0056b3;
}

.page-promotions-cashback-offer__type-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-promotions-cashback-offer__terms-section {
    background-color: #f1f7fe;
}

.page-promotions-cashback-offer__terms-section ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 30px;
    color: #495057;
}

.page-promotions-cashback-offer__terms-section ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-promotions-cashback-offer__terms-section ul li strong {
    color: #0056b3;
}

.page-promotions-cashback-offer__terms-image {
    max-width: 80%;
    height: auto;
    margin: 40px auto 0;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-cashback-offer__advantages-section {
    background-color: #ffffff;
}

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

.page-promotions-cashback-offer__advantage-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 5px solid #ffc107;
    transition: border-color 0.3s ease;
}

.page-promotions-cashback-offer__advantage-item:hover {
    border-color: #007bff;
}

.page-promotions-cashback-offer__advantage-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

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

.page-promotions-cashback-offer__responsible-gambling-section {
    background-color: #e9f5ff; /* Another shade of light blue */
    text-align: center;
}

.page-promotions-cashback-offer__responsible-gambling-image {
    max-width: 70%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-cashback-offer__cta-final-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-cashback-offer__cta-final-section .page-promotions-cashback-offer__section-title {
    color: #ffffff;
}

.page-promotions-cashback-offer__cta-final-section .page-promotions-cashback-offer__section-title::after {
    background-color: #ffc107;
}

.page-promotions-cashback-offer__cta-final-section .page-promotions-cashback-offer__text-content {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-promotions-cashback-offer__final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-cashback-offer .text-highlight {
    color: #ffc107;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-cashback-offer__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-cashback-offer__section-title {
        font-size: 2em;
    }
    .page-promotions-cashback-offer__how-it-works-section .page-promotions-cashback-offer__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .page-promotions-cashback-offer__hero-image,
    .page-promotions-cashback-offer__process-image,
    .page-promotions-cashback-offer__terms-image,
    .page-promotions-cashback-offer__responsible-gambling-image {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback-offer__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-cashback-offer__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-cashback-offer__section-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback-offer__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-cashback-offer__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions-cashback-offer__final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-cashback-offer__cashback-type {
        padding: 20px;
    }
    .page-promotions-cashback-offer__type-title {
        font-size: 1.5em;
    }
    .page-promotions-cashback-offer__advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback-offer__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback-offer__hero-subtitle {
        font-size: 0.95em;
    }
    .page-promotions-cashback-offer__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-promotions-cashback-offer__hero-section,
    .page-promotions-cashback-offer__introduction-section,
    .page-promotions-cashback-offer__how-it-works-section,
    .page-promotions-cashback-offer__details-section,
    .page-promotions-cashback-offer__terms-section,
    .page-promotions-cashback-offer__advantages-section,
    .page-promotions-cashback-offer__responsible-gambling-section,
    .page-promotions-cashback-offer__cta-final-section {
        padding: 40px 0;
    }
    .page-promotions-cashback-offer__step-title {
        font-size: 1.3em;
    }
    .page-promotions-cashback-offer__type-title {
        font-size: 1.3em;
    }
    .page-promotions-cashback-offer__advantage-title {
        font-size: 1.4em;
    }
}