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

/* General Styles */
.page-promotions-sports-cashback {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #f8f8f8; /* Slightly off-white background for the page */
}

.page-promotions-sports-cashback__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-promotions-sports-cashback__section-title {
    font-size: 32px;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-sports-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-sports-cashback__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
}

/* Color contrast classes */
.page-promotions-sports-cashback__dark-bg {
    background-color: #003366;
    color: #ffffff;
}

.page-promotions-sports-cashback__dark-bg .page-promotions-sports-cashback__section-title {
    color: #ffffff;
}