/* style/promotions-daily-weekly-rebate.css */
.page-promotions-daily-weekly-rebate {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-promotions-daily-weekly-rebate .hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #2a4a90 100%); /* Adjusted gradient for better contrast */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-weekly-rebate .hero-section h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E3B505; /* Highlight H1 with secondary color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-weekly-rebate .hero-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.page-promotions-daily-weekly-rebate .hero-buttons .btn {
    margin: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
}

.page-promotions-daily-weekly-rebate .btn-primary {
    background-color: #E3B505;
    color: #0A2463;
    border: 2px solid #E3B505;
}

.page-promotions-daily-weekly-rebate .btn-primary:hover {
    background-color: #f0c20f;
    transform: translateY(-3px);
}

.page-promotions-daily-weekly-rebate .btn-secondary {
    background-color: transparent;
    color: #E3B505;
    border: 2px solid #E3B505;
}

.page-promotions-daily-weekly-rebate .btn-secondary:hover {
    background-color: #E3B505;
    color: #0A2463;
    transform: translateY(-3px);
}

.page-promotions-daily-weekly-rebate .content-block {
    padding: 60px 0;
}

.page-promotions-daily-weekly-rebate .content-block h2 {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions-daily-weekly-rebate .content-block h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #E3B505;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-promotions-daily-weekly-rebate .content-block h3 {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-daily-weekly-rebate .content-block p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-promotions-daily-weekly-rebate .content-block ul,
.page-promotions-daily-weekly-rebate .content-block ol {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-promotions-daily-weekly-rebate .content-block ul li,
.page-promotions-daily-weekly-rebate .content-block ol li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #444;
}

.page-promotions-daily-weekly-rebate .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.page-promotions-daily-weekly-rebate .content-wrapper.reverse-layout {
    flex-direction: row-reverse;
}

.page-promotions-daily-weekly-rebate .text-content {
    flex: 1;
}

.page-promotions-daily-weekly-rebate .image-content {
    flex: 1;
    text-align: center;
}

.page-promotions-daily-weekly-rebate .feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-weekly-rebate .colored-bg {
    background-color: #e6f0ff; /* A lighter shade of blue, close to primary, for contrast */
    padding: 80px 0;
}

.page-promotions-daily-weekly-rebate .colored-bg h2 {
    color: #0A2463;
}

.page-promotions-daily-weekly-rebate .why-58vin-section .grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-daily-weekly-rebate .feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-weekly-rebate .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-weekly-rebate .feature-card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-promotions-daily-weekly-rebate .feature-card h3 {
    font-size: 1.5em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-daily-weekly-rebate .feature-card p {
    color: #666;
    font-size: 1em;
}

.page-promotions-daily-weekly-rebate .text-center {
    text-align: center;
}

.page-promotions-daily-weekly-rebate .mt-4 {
    margin-top: 40px;
}

.page-promotions-daily-weekly-rebate .btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-promotions-daily-weekly-rebate .cta-banner-section {
    background-color: #0A2463;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-daily-weekly-rebate .cta-banner-section h2 {
    color: #E3B505;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-promotions-daily-weekly-rebate .cta-banner-section p {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #ffffff;
}

.page-promotions-daily-weekly-rebate .cta-buttons .btn {
    margin: 10px;
}

.page-promotions-daily-weekly-rebate .faq-section .faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-weekly-rebate .faq-section .faq-item h3 {
    color: #0A2463;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-daily-weekly-rebate .faq-section .faq-item h3::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-daily-weekly-rebate .faq-section .faq-item.active h3::after {
    transform: rotate(45deg);
}

.page-promotions-daily-weekly-rebate .faq-section .faq-item p {
    color: #555;
    font-size: 1.05em;
    display: none; /* Hidden by default */
    margin-top: 15px;
}

.page-promotions-daily-weekly-rebate .faq-section .faq-item.active p {
    display: block;
}

.page-promotions-daily-weekly-rebate .terms-conditions-section p {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-promotions-daily-weekly-rebate .terms-conditions-section ul {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 20px;
}

.page-promotions-daily-weekly-rebate .terms-conditions-section ul li {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-weekly-rebate .hero-section h1 {
        font-size: 2.5em;
    }
    .page-promotions-daily-weekly-rebate .content-block h2 {
        font-size: 2em;
    }
    .page-promotions-daily-weekly-rebate .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions-daily-weekly-rebate .content-wrapper.reverse-layout {
        flex-direction: column;
    }
    .page-promotions-daily-weekly-rebate .image-content {
        margin-top: 30px;
    }
    .page-promotions-daily-weekly-rebate .feature-card {
        padding: 25px;
    }
    .page-promotions-daily-weekly-rebate .feature-card h3 {
        font-size: 1.3em;
    }
    .page-promotions-daily-weekly-rebate .cta-banner-section h2 {
        font-size: 2.2em;
    }
    .page-promotions-daily-weekly-rebate .cta-banner-section p {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-weekly-rebate .hero-section {
        padding: 80px 0;
    }
    .page-promotions-daily-weekly-rebate .hero-section h1 {
        font-size: 2em;
    }
    .page-promotions-daily-weekly-rebate .hero-section p {
        font-size: 1em;
    }
    .page-promotions-daily-weekly-rebate .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-daily-weekly-rebate .content-block {
        padding: 40px 0;
    }
    .page-promotions-daily-weekly-rebate .content-block h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions-daily-weekly-rebate .content-block h3 {
        font-size: 1.5em;
    }
    .page-promotions-daily-weekly-rebate .content-block p,
    .page-promotions-daily-weekly-rebate .content-block ul li,
    .page-promotions-daily-weekly-rebate .content-block ol li {
        font-size: 0.95em;
    }
    .page-promotions-daily-weekly-rebate .grid-3-cols {
        grid-template-columns: 1fr;
    }
    .page-promotions-daily-weekly-rebate .cta-banner-section h2 {
        font-size: 1.8em;
    }
    .page-promotions-daily-weekly-rebate .cta-banner-section p {
        font-size: 1em;
    }
    .page-promotions-daily-weekly-rebate .btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-weekly-rebate .hero-section h1 {
        font-size: 1.8em;
    }
    .page-promotions-daily-weekly-rebate .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-daily-weekly-rebate .hero-buttons .btn {
        width: 80%;
        max-width: 250px;
    }
    .page-promotions-daily-weekly-rebate .content-block h2 {
        font-size: 1.6em;
    }
    .page-promotions-daily-weekly-rebate .content-block h3 {
        font-size: 1.3em;
    }
    .page-promotions-daily-weekly-rebate .cta-banner-section h2 {
        font-size: 1.6em;
    }
    .page-promotions-daily-weekly-rebate .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-daily-weekly-rebate .cta-buttons .btn {
        width: 90%;
        max-width: 280px;
    }
}