/* style/promotions-daily-rebate-program.css */

/* General Page Styling */
.page-promotions-daily-rebate-program {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-promotions-daily-rebate-program__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker blue for contrast */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
}

.page-promotions-daily-rebate-program__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-promotions-daily-rebate-program h2 {
    font-size: 2em;
    color: #0056b3; /* Darker blue for contrast */
    margin-bottom: 20px;
}

.page-promotions-daily-rebate-program h3 {
    font-size: 1.5em;
    color: #007BFF;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-daily-rebate-program p {
    margin-bottom: 15px;
    color: #495057;
}

.page-promotions-daily-rebate-program a {
    color: #007BFF;
    text-decoration: none;
}

.page-promotions-daily-rebate-program a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Hero Section */
.page-promotions-daily-rebate-program__hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-rebate-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for title */
}

.page-promotions-daily-rebate-program__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e9ecef; /* Light gray for subtitle */
}

.page-promotions-daily-rebate-program__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0056b3; /* Dark blue text for contrast */
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-daily-rebate-program__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #003366;
    text-decoration: none;
}

.page-promotions-daily-rebate-program__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Introduction Section */
.page-promotions-daily-rebate-program__introduction-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: left;
}

.page-promotions-daily-rebate-program__content-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.page-promotions-daily-rebate-program__benefits-section {
    background-color: #f1f7fe; /* Light blue background */
    padding: 60px 0;
    text-align: center;
}

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

.page-promotions-daily-rebate-program__benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-promotions-daily-rebate-program__benefit-item:hover {
    transform: translateY(-5px);
}

.page-promotions-daily-rebate-program__benefit-item h3 {
    color: #007BFF;
    font-size: 1.6em;
    margin-bottom: 15px;
}

/* How It Works Section */
.page-promotions-daily-rebate-program__how-it-works-section {
    background-color: #fff;
    padding: 60px 0;
}

.page-promotions-daily-rebate-program ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #495057;
}

.page-promotions-daily-rebate-program ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #495057;
}

.page-promotions-daily-rebate-program__rebate-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-promotions-daily-rebate-program__rebate-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.page-promotions-daily-rebate-program__rebate-table th,
.page-promotions-daily-rebate-program__rebate-table td {
    padding: 15px;
    border: 1px solid #dee2e6;
    text-align: left;
}

.page-promotions-daily-rebate-program__rebate-table th {
    background-color: #007BFF;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
}

.page-promotions-daily-rebate-program__rebate-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.page-promotions-daily-rebate-program__rebate-table tbody tr:hover {
    background-color: #e9ecef;
}

/* Terms Section */
.page-promotions-daily-rebate-program__terms-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* FAQ Section */
.page-promotions-daily-rebate-program__faq-section {
    background-color: #fff;
    padding: 60px 0;
}

.page-promotions-daily-rebate-program__faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f1f7fe; /* Light blue background */
    border-left: 5px solid #007BFF;
    border-radius: 5px;
}

.page-promotions-daily-rebate-program__faq-item h3 {
    color: #0056b3; /* Darker blue for question */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.page-promotions-daily-rebate-program__faq-item p {
    color: #495057;
    margin-bottom: 0;
}

/* Bottom CTA Section */
.page-promotions-daily-rebate-program__cta-bottom-section {
    background: linear-gradient(45deg, #007BFF, #FFD700); /* Gradient background */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-daily-rebate-program__cta-bottom-section .page-promotions-daily-rebate-program__section-title {
    color: #fff;
}

.page-promotions-daily-rebate-program__cta-bottom-section .page-promotions-daily-rebate-program__section-title::after {
    background-color: #fff;
}

.page-promotions-daily-rebate-program__cta-bottom-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e9ecef;
}

.page-promotions-daily-rebate-program__cta-button--large {
    padding: 18px 40px;
    font-size: 1.4em;
    background-color: #003366; /* Dark blue button */
    color: #FFD700; /* Gold text */
}

.page-promotions-daily-rebate-program__cta-button--large:hover {
    background-color: #001f3f;
    color: #fff;
}

.page-promotions-daily-rebate-program__responsible-gambling {
    margin-top: 40px;
    font-size: 0.9em;
    opacity: 0.8;
}

.page-promotions-daily-rebate-program__responsible-gambling a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions-daily-rebate-program__responsible-gambling a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-daily-rebate-program__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-daily-rebate-program__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-daily-rebate-program__section-title {
        font-size: 2em;
    }
    .page-promotions-daily-rebate-program h2 {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate-program h3 {
        font-size: 1.3em;
    }
    .page-promotions-daily-rebate-program__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-daily-rebate-program__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-rebate-program__hero-title {
        font-size: 2em;
    }
    .page-promotions-daily-rebate-program__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-daily-rebate-program__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-promotions-daily-rebate-program__section-title {
        font-size: 1.8em;
    }
}