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

/* Base styles for the page content */
.page-promotions-sports-rebate {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Light text for dark background */
    background-color: #000000; /* Main dark background */
    line-height: 1.6;
    padding-bottom: 50px; /* Space above footer */
}

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

/* Hero Section */
.page-promotions-sports-rebate__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%); /* Darker gradient */
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.page-promotions-sports-rebate__hero-content {
    z-index: 2;
    max-width: 800px;
}

.page-promotions-sports-rebate__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
}

.page-promotions-sports-rebate__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-promotions-sports-rebate__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Auxiliary color for emphasis */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-sports-rebate__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-promotions-sports-rebate__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for primary CTA */
    color: #000000; /* Dark text for light background */
    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;
    margin: 10px;
    border: none;
    cursor: pointer;
}

.page-promotions-sports-rebate__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions-sports-rebate__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-promotions-sports-rebate__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

/* General Section Styling */
.page-promotions-sports-rebate__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-sports-rebate__section:last-of-type {
    border-bottom: none;
}

.page-promotions-sports-rebate__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-sports-rebate__subsection-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-promotions-sports-rebate p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #cccccc; /* Slightly lighter than white for body text */
}

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

/* Lists */
.page-promotions-sports-rebate__list,
.page-promotions-sports-rebate__numbered-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-promotions-sports-rebate__list li,
.page-promotions-sports-rebate__numbered-list li {
    background-color: #1a1a1a; /* Slightly lighter dark background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    font-size: 1.05em;
    color: #ffffff;
}

.page-promotions-sports-rebate__list li strong,
.page-promotions-sports-rebate__numbered-list li strong {
    color: #FFD700;
}

.page-promotions-sports-rebate__list li:before {
    content: '✅'; /* Checkmark for unordered list */
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1;
    color: #FFD700;
}

.page-promotions-sports-rebate__numbered-list li:before {
    content: counter(list-item) ".";
    counter-increment: list-item;
    margin-right: 15px;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
}

/* FAQ Section */
.page-promotions-sports-rebate__faq-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-sports-rebate__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-sports-rebate__faq-question:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-promotions-sports-rebate__faq-question.active:after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-sports-rebate__faq-answer {
    font-size: 1.0em;
    color: #cccccc;
    display: none; /* Hidden by default, toggled by JS */
    margin-top: 15px;
}

.page-promotions-sports-rebate__faq-answer.active {
    display: block;
}

/* Final CTA */
.page-promotions-sports-rebate__final-cta {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(45deg, #000000, #333333);
}

.page-promotions-sports-rebate__final-cta .page-promotions-sports-rebate__section-title {
    color: #FFD700;
}

.page-promotions-sports-rebate__cta-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Disclaimer */
.page-promotions-sports-rebate__disclaimer {
    background-color: #0d0d0d;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
    color: #999999;
}

.page-promotions-sports-rebate__disclaimer-title {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 20px;
}

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

    .page-promotions-sports-rebate__hero-description {
        font-size: 1em;
    }

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

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

    .page-promotions-sports-rebate__subsection-title {
        font-size: 1.5em;
    }

    .page-promotions-sports-rebate__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-sports-rebate__hero {
        padding: 60px 15px;
    }

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

    .page-promotions-sports-rebate__section {
        padding: 40px 0;
    }

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

    .page-promotions-sports-rebate__subsection-title {
        font-size: 1.3em;
    }

    .page-promotions-sports-rebate__list li,
    .page-promotions-sports-rebate__numbered-list li {
        padding: 10px 15px;
        font-size: 0.95em;
    }

    .page-promotions-sports-rebate__cta-group {
        flex-direction: column;
    }

    .page-promotions-sports-rebate__cta-button {
        width: 100%;
        margin: 5px 0;
    }
}