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

.page-promotions-sports-rebate {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark backgrounds */
    background-color: #0A192F; /* Main dark background */
}

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

.page-promotions-sports-rebate__hero-section {
    position: relative;
    background: linear-gradient(135deg, #0A192F 0%, #1f46d4 100%); /* Dark blue to a slightly brighter blue for depth */
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-promotions-sports-rebate__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-promotions-sports-rebate__hero-section .page-promotions-sports-rebate__container {
    position: relative;
    z-index: 1;
    color: #FFFFFF; /* White text for hero section */
}

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

.page-promotions-sports-rebate__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #f5e6d0;
}

.page-promotions-sports-rebate__cta-button {
    display: inline-block;
    background-color: #E0B92B; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    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-sports-rebate__cta-button:hover {
    background-color: #d4a720; /* Darker gold on hover */
    transform: translateY(-3px);
}

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

.page-promotions-sports-rebate__cta-button--secondary:hover {
    background-color: #E0B92B;
    color: #0A192F;
}

.page-promotions-sports-rebate__content-section {
    padding: 80px 0;
    background-color: #0A192F;
    color: #f5e6d0;
}

.page-promotions-sports-rebate__content-section:nth-of-type(even) {
    background-color: #1a2b42; /* Slightly lighter dark background for contrast */
}

.page-promotions-sports-rebate__section-title {
    font-size: 2.5em;
    color: #E0B92B;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-sports-rebate__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E0B92B;
    border-radius: 2px;
}

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

.page-promotions-sports-rebate__content-section p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #c0c0c0;
}

.page-promotions-sports-rebate__content-section ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-sports-rebate__content-section ul li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: #c0c0c0;
}

.page-promotions-sports-rebate__content-section ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #E0B92B; /* Gold checkmark */
    font-size: 1.2em;
}

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

.page-promotions-sports-rebate__rebate-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    background-color: #1a2b42;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-sports-rebate__rebate-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table is readable on small screens */
}

.page-promotions-sports-rebate__rebate-table th,
.page-promotions-sports-rebate__rebate-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #2f4058; /* Slightly lighter border for dark theme */
}

.page-promotions-sports-rebate__rebate-table th {
    background-color: #0A192F; /* Dark blue header */
    color: #E0B92B; /* Gold text */
    font-weight: bold;
    font-size: 1.1em;
}

.page-promotions-sports-rebate__rebate-table tr:nth-child(even) {
    background-color: #1a2b42; /* Alternating row background */
}

.page-promotions-sports-rebate__rebate-table td {
    color: #f5e6d0;
}

.page-promotions-sports-rebate__note {
    font-size: 0.95em;
    color: #a0a0a0;
    margin-top: 20px;
    text-align: center;
}

.page-promotions-sports-rebate__faq-list {
    margin-top: 40px;
}

.page-promotions-sports-rebate__faq-item {
    background-color: #1a2b42;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-sports-rebate__faq-question {
    font-size: 1.2em;
    color: #E0B92B;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0A192F;
    border-bottom: 1px solid #2f4058;
    transition: background-color 0.3s ease;
}

.page-promotions-sports-rebate__faq-question:hover {
    background-color: #1a2b42;
}

.page-promotions-sports-rebate__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-promotions-sports-rebate__faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #c0c0c0;
}

.page-promotions-sports-rebate__faq-answer.active {
    max-height: 300px; /* Adjust as needed */
    padding: 20px;
}

.page-promotions-sports-rebate__cta-section {
    background: linear-gradient(45deg, #0A192F, #1f46d4);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #f5e6d0;
}

.page-promotions-sports-rebate__cta-section .page-promotions-sports-rebate__container {
    position: relative;
    z-index: 1;
}

.page-promotions-sports-rebate__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-promotions-sports-rebate__cta-title {
    font-size: 2.8em;
    color: #E0B92B;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-sports-rebate__cta-description {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #c0c0c0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-sports-rebate__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-sports-rebate__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-sports-rebate__section-title {
        font-size: 2em;
    }
    .page-promotions-sports-rebate__subsection-title {
        font-size: 1.5em;
    }
    .page-promotions-sports-rebate__cta-title {
        font-size: 2.2em;
    }
    .page-promotions-sports-rebate__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-sports-rebate__hero-section {
        padding: 80px 0;
        min-height: 400px;
    }
    .page-promotions-sports-rebate__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-sports-rebate__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-sports-rebate__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-sports-rebate__cta-button--secondary {
        margin-left: 10px;
    }
    .page-promotions-sports-rebate__content-section {
        padding: 60px 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__content-section p,
    .page-promotions-sports-rebate__content-section ul li {
        font-size: 0.95em;
    }
    .page-promotions-sports-rebate__rebate-table th,
    .page-promotions-sports-rebate__rebate-table td {
        padding: 10px;
        font-size: 0.9em;
    }
    .page-promotions-sports-rebate__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-promotions-sports-rebate__faq-answer {
        padding: 15px;
    }
    .page-promotions-sports-rebate__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-sports-rebate__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .page-promotions-sports-rebate__hero-section {
        padding: 60px 0;
        min-height: 350px;
    }
    .page-promotions-sports-rebate__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-sports-rebate__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-sports-rebate__cta-button {
        display: block;
        width: fit-content;
        margin: 15px auto;
    }
    .page-promotions-sports-rebate__cta-button--secondary {
        margin-left: auto;
        margin-right: auto;
    }
    .page-promotions-sports-rebate__section-title {
        font-size: 1.5em;
    }
    .page-promotions-sports-rebate__subsection-title {
        font-size: 1.2em;
    }
    .page-promotions-sports-rebate__rebate-table-wrapper {
        margin: 20px -20px; /* Allow table to spill over slightly */
    }
    .page-promotions-sports-rebate__faq-question {
        font-size: 1em;
    }
    .page-promotions-sports-rebate__cta-title {
        font-size: 1.5em;
    }
    .page-promotions-sports-rebate__cta-description {
        font-size: 0.9em;
    }
}