/* style/promotions-daily-rebate.css */
.page-promotions-daily-rebate {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark sections */
    background-color: #0A1931; /* Main background color */
}

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

.page-promotions-daily-rebate__hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A1931 0%, #30475E 100%); /* Dark gradient for hero */
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
}

.page-promotions-daily-rebate__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Slightly transparent to let background gradient show */
    z-index: 1;
}

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

.page-promotions-daily-rebate__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-promotions-daily-rebate__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-daily-rebate__section {
    padding: 80px 0;
    color: #ffffff;
}

.page-promotions-daily-rebate__section--intro {
    background-color: #0A1931;
}

.page-promotions-daily-rebate__section--how-it-works {
    background-color: #1A2E47;
}

.page-promotions-daily-rebate__section--benefits {
    background-color: #0A1931;
}

.page-promotions-daily-rebate__section--terms {
    background-color: #1A2E47;
}

.page-promotions-daily-rebate__section--faq {
    background-color: #0A1931;
}

.page-promotions-daily-rebate__section--cta {
    background-color: #FFD700; /* Gold background for CTA */
    color: #0A1931; /* Dark text on gold background */
    text-align: center;
}

.page-promotions-daily-rebate__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-promotions-daily-rebate__section--cta .page-promotions-daily-rebate__section-title,
.page-promotions-daily-rebate__section--cta .page-promotions-daily-rebate__cta-title {
    color: #0A1931; /* Dark blue for titles on gold background */
}

.page-promotions-daily-rebate__subsection-title {
    font-size: 2em;
    color: #FFD700; /* Gold for sub-section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-promotions-daily-rebate__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0; /* Light grey for body text */
}

.page-promotions-daily-rebate__section--cta .page-promotions-daily-rebate__text {
    color: #0A1931; /* Dark blue text on gold CTA background */
}

.page-promotions-daily-rebate__formula {
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    background-color: #2a3d54;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 30px auto;
    max-width: 600px;
}

.page-promotions-daily-rebate__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    cursor: pointer;
}

.page-promotions-daily-rebate__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-promotions-daily-rebate__btn--primary:hover {
    background-color: #e6c200;
    color: #000000;
    transform: translateY(-2px);
}

.page-promotions-daily-rebate__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-promotions-daily-rebate__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}

.page-promotions-daily-rebate__brand-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-daily-rebate__brand-link:hover {
    text-decoration: underline;
}

.page-promotions-daily-rebate__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
}

.page-promotions-daily-rebate__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-rebate__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-daily-rebate__benefit-item {
    background-color: #1A2E47;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-promotions-daily-rebate__benefit-title {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-promotions-daily-rebate__terms-list {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 30px;
    color: #e0e0e0;
}

.page-promotions-daily-rebate__terms-list li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-promotions-daily-rebate__terms-list li p {
    margin: 0;
}

.page-promotions-daily-rebate__faq-item {
    background-color: #1A2E47;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-rebate__faq-question {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.page-promotions-daily-rebate__faq-answer {
    color: #e0e0e0;
    font-size: 1.05em;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 10px;
}

.page-promotions-daily-rebate__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 10px;
}

.page-promotions-daily-rebate__cta-content {
    padding: 60px 20px;
}

.page-promotions-daily-rebate__cta-title {
    font-size: 3em;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-daily-rebate__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-daily-rebate__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-daily-rebate__section-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-rebate__subsection-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-rebate__hero {
        height: 400px;
        padding: 40px 15px;
    }
    .page-promotions-daily-rebate__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-rebate__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-daily-rebate__section {
        padding: 60px 0;
    }
    .page-promotions-daily-rebate__section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate__subsection-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-rebate__text {
        font-size: 1em;
    }
    .page-promotions-daily-rebate__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }
    .page-promotions-daily-rebate__benefits-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-daily-rebate__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-rebate__hero {
        height: 350px;
    }
    .page-promotions-daily-rebate__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-daily-rebate__section {
        padding: 40px 0;
    }
    .page-promotions-daily-rebate__section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-rebate__subsection-title {
        font-size: 1.3em;
    }
    .page-promotions-daily-rebate__btn {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .page-promotions-daily-rebate__formula {
        font-size: 1em;
        padding: 15px;
    }
    .page-promotions-daily-rebate__cta-title {
        font-size: 1.8em;
    }
}