/* style/promotions-cashback.css */

.page-promotions-cashback {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for general text on dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

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

.page-promotions-cashback__hero {
    background: linear-gradient(135deg, #B22222 0%, #FFD700 100%); /* Primary and secondary color gradient */
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-cashback__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-promotions-cashback__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-promotions-cashback__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff; /* White for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-cashback__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-promotions-cashback__btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-promotions-cashback__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #B22222; /* Dark red for text */
    border: 2px solid #FFD700;
}

.page-promotions-cashback__btn--primary:hover {
    background-color: #e0b000;
    border-color: #e0b000;
    transform: translateY(-2px);
}

.page-promotions-cashback__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-promotions-cashback__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #FFD700;
    transform: translateY(-2px);
}

.page-promotions-cashback__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-promotions-cashback__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-promotions-cashback__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    position: relative;
}

.page-promotions-cashback__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #B22222; /* Dark red underline */
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-promotions-cashback__intro, 
.page-promotions-cashback__how-to-join, 
.page-promotions-cashback__rates-tiers, 
.page-promotions-cashback__terms, 
.page-promotions-cashback__faq, 
.page-promotions-cashback__cta-final {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-cashback__intro p, 
.page-promotions-cashback__terms p, 
.page-promotions-cashback__faq p, 
.page-promotions-cashback__cta-final p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.page-promotions-cashback__image-inline {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__steps {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-promotions-cashback__steps li {
    background-color: #2a2a2a;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__steps li h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-promotions-cashback__steps li p {
    color: #f0f0f0;
    margin-bottom: 0;
}

.page-promotions-cashback__steps li a {
    color: #B22222;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-cashback__steps li a:hover {
    color: #FFD700;
}

.page-promotions-cashback__table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.page-promotions-cashback__table th, 
.page-promotions-cashback__table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-cashback__table th {
    background-color: #B22222; /* Dark red for table headers */
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.page-promotions-cashback__table tr:nth-child(even) {
    background-color: #2a2a2a;
}

.page-promotions-cashback__table tr:nth-child(odd) {
    background-color: #1f1f1f;
}

.page-promotions-cashback__table td {
    color: #f0f0f0;
}

.page-promotions-cashback__list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-promotions-cashback__list li {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    border-left: 3px solid #B22222;
    color: #f0f0f0;
    font-size: 1.05em;
}

.page-promotions-cashback__list li a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions-cashback__list li a:hover {
    color: #fff;
}

.page-promotions-cashback__faq-item {
    background-color: #2a2a2a;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-cashback__faq-item p {
    color: #f0f0f0;
    margin-bottom: 0;
}

.page-promotions-cashback__cta-final {
    text-align: center;
    padding-bottom: 80px;
}

.page-promotions-cashback__btn--large {
    padding: 20px 40px;
    font-size: 1.3em;
    margin-top: 30px;
    background-color: #B22222;
    color: #fff;
    border: 2px solid #B22222;
}

.page-promotions-cashback__btn--large:hover {
    background-color: #8c1b1b;
    border-color: #8c1b1b;
}

.page-promotions-cashback__contact-text {
    margin-top: 30px;
    font-size: 1.1em;
    color: #ccc;
}

.page-promotions-cashback__link {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions-cashback__link:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-cashback__title {
        font-size: 2.5em;
    }

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

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

    .page-promotions-cashback__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-cashback__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-promotions-cashback__hero {
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback__title {
        font-size: 2em;
    }

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

    .page-promotions-cashback__btn {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }

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

    .page-promotions-cashback__table-wrapper {
        margin: 20px 0;
    }

    .page-promotions-cashback__table th, 
    .page-promotions-cashback__table td {
        padding: 10px;
        font-size: 0.9em;
    }
}