/* style/promotions-daily-rebate-introduction.css */
.page-promotions-daily-rebate-introduction {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark body background */
    line-height: 1.6;
    background-color: transparent; /* Main content background is transparent, body handles the dark background */
}

.page-promotions-daily-rebate-introduction__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions-daily-rebate-introduction__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-daily-rebate-introduction__section--light {
    background-color: #f0f2f5; /* Lighter background for contrast */
    color: #333333;
}

.page-promotions-daily-rebate-introduction__dark-bg {
    background-color: #000080; /* Auxiliary brand color */
    color: #ffffff;
}

.page-promotions-daily-rebate-introduction__section-title {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #FFD700; /* Gold color for titles */
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate-introduction__section-title--light {
    color: #ffffff; /* White text for dark backgrounds */
}

.page-promotions-daily-rebate-introduction__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0; /* Slightly off-white for body text */
}

.page-promotions-daily-rebate-introduction__text-block--light {
    color: #ffffff; /* White text for dark backgrounds */
}

.page-promotions-daily-rebate-introduction__text-block a {
    color: #FFD700; /* Gold links */
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-daily-rebate-introduction__text-block a:hover {
    text-decoration: underline;
}

.page-promotions-daily-rebate-introduction__highlight-text {
    color: #FFD700;
    font-weight: bold;
}

/* Hero Section */
.page-promotions-daily-rebate-introduction__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    overflow: hidden;
    background-color: #0a0a0a; /* Dark background for hero */
}

.page-promotions-daily-rebate-introduction__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-promotions-daily-rebate-introduction__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Slightly dim the background image */
}

.page-promotions-daily-rebate-introduction__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-promotions-daily-rebate-introduction__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-daily-rebate-introduction__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebate-introduction__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%; /* Ensure container fills width for responsiveness */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-promotions-daily-rebate-introduction__btn-primary,
.page-promotions-daily-rebate-introduction__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 100%; /* Responsive button */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word;
}

.page-promotions-daily-rebate-introduction__btn-primary {
    background-color: #FFD700;
    color: #000080; /* Dark blue text for gold button */
    border: 2px solid #FFD700;
}

.page-promotions-daily-rebate-introduction__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-daily-rebate-introduction__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-daily-rebate-introduction__btn-secondary:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-3px);
}

/* Content Images */
.page-promotions-daily-rebate-introduction__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Benefits Grid */
.page-promotions-daily-rebate-introduction__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-daily-rebate-introduction__benefit-card {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white card for dark background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.page-promotions-daily-rebate-introduction__benefit-card:hover {
    transform: translateY(-10px);
}

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

.page-promotions-daily-rebate-introduction__card-text {
    font-size: 1em;
    color: #f0f0f0;
}

.page-promotions-daily-rebate-introduction__card-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}
.page-promotions-daily-rebate-introduction__card-text a:hover {
    text-decoration: underline;
}

/* How to Participate Steps */
.page-promotions-daily-rebate-introduction__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-promotions-daily-rebate-introduction__step-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-rebate-introduction__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700;
    margin-right: 20px;
    flex-shrink: 0;
    line-height: 1;
}

.page-promotions-daily-rebate-introduction__step-content {
    flex-grow: 1;
}

.page-promotions-daily-rebate-introduction__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-daily-rebate-introduction__step-text {
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-promotions-daily-rebate-introduction__step-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}
.page-promotions-daily-rebate-introduction__step-text a:hover {
    text-decoration: underline;
}

/* Terms List */
.page-promotions-daily-rebate-introduction__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-promotions-daily-rebate-introduction__terms-item {
    font-size: 1.1em;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: #f0f0f0;
}

.page-promotions-daily-rebate-introduction__terms-item::before {
    content: '•';
    color: #FFD700;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-promotions-daily-rebate-introduction__terms-item a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}
.page-promotions-daily-rebate-introduction__terms-item a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-promotions-daily-rebate-introduction__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-rebate-introduction__faq-item {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white card */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebate-introduction__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #000080; /* Auxiliary brand color for question background */
    color: #ffffff;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions-daily-rebate-introduction__faq-question:hover {
    background-color: #000099;
}

.page-promotions-daily-rebate-introduction__faq-title {
    margin: 0;
    color: #ffffff;
    font-size: 1em; /* Adjusted for h3 in question div */
}

.page-promotions-daily-rebate-introduction__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFD700;
}

.page-promotions-daily-rebate-introduction__faq-item.active .page-promotions-daily-rebate-introduction__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions-daily-rebate-introduction__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(0, 0, 0, 0.4); /* Slightly darker background for answer */
    color: #f0f0f0;
    text-align: left;
}

.page-promotions-daily-rebate-introduction__faq-item.active .page-promotions-daily-rebate-introduction__faq-answer {
    max-height: 1000px !important; /* Important for JS toggle */
    padding: 15px 25px;
}

.page-promotions-daily-rebate-introduction__faq-answer p {
    margin: 0;
    font-size: 1em;
    color: #f0f0f0;
}

.page-promotions-daily-rebate-introduction__faq-answer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}
.page-promotions-daily-rebate-introduction__faq-answer a:hover {
    text-decoration: underline;
}

/* CTA Section */
.page-promotions-daily-rebate-introduction__cta-section {
    padding: 80px 0;
}

.page-promotions-daily-rebate-introduction__cta-container {
    max-width: 900px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-daily-rebate-introduction__hero-title {
        font-size: 3em;
    }
    .page-promotions-daily-rebate-introduction__hero-description {
        font-size: 1.2em;
    }
    .page-promotions-daily-rebate-introduction__section-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-rebate-introduction__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-rebate-introduction__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile offset */
    }
    .page-promotions-daily-rebate-introduction__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-daily-rebate-introduction__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-daily-rebate-introduction__section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate-introduction__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding for mobile */
    }
    .page-promotions-daily-rebate-introduction__btn-primary,
    .page-promotions-daily-rebate-introduction__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
    }

    /* Images responsiveness */
    .page-promotions-daily-rebate-introduction img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions-daily-rebate-introduction__section,
    .page-promotions-daily-rebate-introduction__card,
    .page-promotions-daily-rebate-introduction__container,
    .page-promotions-daily-rebate-introduction__benefit-card,
    .page-promotions-daily-rebate-introduction__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-daily-rebate-introduction__hero-content {
        padding: 15px;
    }

    .page-promotions-daily-rebate-introduction__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-promotions-daily-rebate-introduction__step-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .page-promotions-daily-rebate-introduction__terms-item {
        padding-left: 0;
    }
    .page-promotions-daily-rebate-introduction__terms-item::before {
        display: none;
    }
    .page-promotions-daily-rebate-introduction__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-daily-rebate-introduction__faq-answer {
        padding: 0 20px;
    }
    .page-promotions-daily-rebate-introduction__faq-item.active .page-promotions-daily-rebate-introduction__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-rebate-introduction__hero-title {
        font-size: 2em;
    }
    .page-promotions-daily-rebate-introduction__hero-description {
        font-size: 1em;
    }
    .page-promotions-daily-rebate-introduction__section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-rebate-introduction__btn-primary,
    .page-promotions-daily-rebate-introduction__btn-secondary {
        font-size: 1em;
        padding: 10px 15px;
    }
}