/* style/promotions-daily-rebate.css */
.page-promotions-daily-rebate {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light text for dark background */
    background-color: #0A2342; /* Main dark blue background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-daily-rebate__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-promotions-daily-rebate__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-promotions-daily-rebate__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.page-promotions-daily-rebate__title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebate__title .highlight {
    color: #f5f5f5;
}

.page-promotions-daily-rebate__subtitle {
    font-size: 1.4em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-promotions-daily-rebate__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* 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;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promotions-daily-rebate__hero-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-promotions-daily-rebate__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.page-promotions-daily-rebate__hero-image:hover {
    transform: scale(1.03);
}

/* General Section Styling */
.page-promotions-daily-rebate__section {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-promotions-daily-rebate__section:nth-of-type(even) {
    background-color: #1a3a60; /* Slightly lighter dark blue for alternating sections */
}

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

.page-promotions-daily-rebate__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-daily-rebate__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-promotions-daily-rebate p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-promotions-daily-rebate a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-promotions-daily-rebate ul,
.page-promotions-daily-rebate ol {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-promotions-daily-rebate ol {
    list-style-type: decimal;
}

.page-promotions-daily-rebate li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* Table Styling */
.page-promotions-daily-rebate__table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate__rebate-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a3a60;
    min-width: 600px;
}

.page-promotions-daily-rebate__rebate-table th,
.page-promotions-daily-rebate__rebate-table td {
    border: 1px solid #0A2342;
    padding: 15px;
    text-align: left;
    color: #f5f5f5;
}

.page-promotions-daily-rebate__rebate-table th {
    background-color: #FFD700; /* Gold header */
    color: #0A2342;
    font-weight: bold;
    font-size: 1.1em;
}

.page-promotions-daily-rebate__rebate-table tr:nth-child(even) {
    background-color: #2a4c7a; /* Slightly darker row */
}

/* Image Styling */
.page-promotions-daily-rebate__illustration-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons in a group */
.page-promotions-daily-rebate__cta-content {
    text-align: center;
}

.page-promotions-daily-rebate__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-promotions-daily-rebate__cta-button--primary {
    background-color: #FFD700;
    color: #0A2342;
}

.page-promotions-daily-rebate__cta-button--primary:hover {
    background-color: #e6c200;
}

.page-promotions-daily-rebate__cta-button--secondary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-daily-rebate__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

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

.page-promotions-daily-rebate__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-daily-rebate__faq-answer {
    font-size: 1.05em;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-rebate__hero {
        flex-direction: column;
        padding: 60px 0;
    }

    .page-promotions-daily-rebate__hero-content {
        text-align: center;
        max-width: 100%;
    }

    .page-promotions-daily-rebate__title {
        font-size: 2.5em;
    }

    .page-promotions-daily-rebate__subtitle {
        font-size: 1.2em;
    }

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

    .page-promotions-daily-rebate__sub-title {
        font-size: 1.5em;
    }

    .page-promotions-daily-rebate p,
    .page-promotions-daily-rebate li,
    .page-promotions-daily-rebate__faq-answer {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-rebate__hero {
        padding: 40px 0;
    }

    .page-promotions-daily-rebate__title {
        font-size: 2em;
    }

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

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

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

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

    .page-promotions-daily-rebate__sub-title {
        font-size: 1.3em;
    }

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

    .page-promotions-daily-rebate__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-rebate__title {
        font-size: 1.8em;
    }

    .page-promotions-daily-rebate__subtitle {
        font-size: 0.9em;
    }

    .page-promotions-daily-rebate__section-title {
        font-size: 1.5em;
    }

    .page-promotions-daily-rebate__sub-title {
        font-size: 1.2em;
    }

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