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

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

/* Hero Section */
.page-promotions-daily-rebates__hero {
    background: linear-gradient(135deg, #1A237E 0%, #303F9F 50%, #FFD700 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.page-promotions-daily-rebates__hero-image-container {
    position: absolute;
    bottom: -50px; /* Adjust as needed */
    right: -50px; /* Adjust as needed */
    width: 300px;
    height: 300px;
    opacity: 0.2;
    z-index: 0;
}

.page-promotions-daily-rebates__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(15deg);
}

.page-promotions-daily-rebates__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebates__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Lighter white for readability */
}

.page-promotions-daily-rebates__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #1A237E; /* Dark blue */
    padding: 15px 30px;
    border-radius: 50px;
    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(0, 0, 0, 0.2);
}

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

.page-promotions-daily-rebates__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

/* General Section Styling */
.page-promotions-daily-rebates__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-promotions-daily-rebates__section:nth-child(even) {
    background-color: #fcfcfc;
}

.page-promotions-daily-rebates__section-title {
    font-size: 2.5em;
    color: #1A237E; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions-daily-rebates__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-promotions-daily-rebates__text-content {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-daily-rebates__inline-link {
    color: #1A237E;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-daily-rebates__inline-link:hover {
    color: #FFD700;
}

/* How It Works Section */
.page-promotions-daily-rebates__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-promotions-daily-rebates__grid-item {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-rebates__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-daily-rebates__grid-title {
    font-size: 1.8em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-promotions-daily-rebates__list {
    list-style: disc inside;
    text-align: left;
    color: #555;
    padding-left: 20px;
}

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

.page-promotions-daily-rebates__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 1em;
}

.page-promotions-daily-rebates__table th,
.page-promotions-daily-rebates__table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

.page-promotions-daily-rebates__table th {
    background-color: #1A237E;
    color: #ffffff;
    font-weight: bold;
}

.page-promotions-daily-rebates__table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Claiming Guide Section */
.page-promotions-daily-rebates__numbered-list {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding: 0;
    margin: 30px 0;
}

.page-promotions-daily-rebates__numbered-list li {
    counter-increment: my-awesome-counter;
    margin-bottom: 25px;
    padding-left: 60px;
    position: relative;
    font-size: 1.1em;
    color: #444;
}

.page-promotions-daily-rebates__numbered-list li::before {
    content: counter(my-awesome-counter);
    background-color: #FFD700;
    color: #1A237E;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebates__guide-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.page-promotions-daily-rebates__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

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

.page-promotions-daily-rebates__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions-daily-rebates__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-daily-rebates__card-title {
    font-size: 1.6em;
    color: #1A237E;
    margin-bottom: 10px;
}

.page-promotions-daily-rebates__card-text {
    color: #666;
    font-size: 1em;
}

/* FAQ Section */
.page-promotions-daily-rebates__faq-item {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-rebates__faq-question {
    font-size: 1.4em;
    color: #1A237E;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-daily-rebates__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-promotions-daily-rebates__faq-answer {
    font-size: 1.05em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

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

/* Final CTA Section */
.page-promotions-daily-rebates__final-cta {
    background: linear-gradient(90deg, #1A237E 0%, #303F9F 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-rebates__final-cta-content {
    position: relative;
    z-index: 1;
}

.page-promotions-daily-rebates__section-title--light {
    color: #FFD700;
}

.page-promotions-daily-rebates__text-content--light {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-rebates__inline-link--light {
    color: #FFD700;
}

.page-promotions-daily-rebates__inline-link--light:hover {
    color: #ffffff;
}

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

.page-promotions-daily-rebates__cta-button--primary {
    background-color: #FFD700;
    color: #1A237E;
}

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

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

.page-promotions-daily-rebates__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #1A237E;
}

.page-promotions-daily-rebates__final-cta-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    opacity: 0.1;
    width: 600px;
    height: auto;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-rebates__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-daily-rebates__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-daily-rebates__section-title {
        font-size: 2em;
    }
    .page-promotions-daily-rebates__grid-layout,
    .page-promotions-daily-rebates__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-rebates__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-rebates__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-daily-rebates__hero-image-container {
        width: 200px;
        height: 200px;
        bottom: -30px;
        right: -30px;
    }
    .page-promotions-daily-rebates__section {
        padding: 40px 0;
    }
    .page-promotions-daily-rebates__section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebates__text-content {
        font-size: 1em;
    }
    .page-promotions-daily-rebates__numbered-list li {
        padding-left: 50px;
    }
    .page-promotions-daily-rebates__numbered-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
    .page-promotions-daily-rebates__table th,
    .page-promotions-daily-rebates__table td {
        padding: 10px;
        font-size: 0.9em;
    }
    .page-promotions-daily-rebates__faq-question {
        font-size: 1.2em;
    }
    .page-promotions-daily-rebates__final-cta {
        padding: 60px 20px;
    }
    .page-promotions-daily-rebates__final-cta-image {
        width: 400px;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-rebates__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebates__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-daily-rebates__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-daily-rebates__section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-rebates__grid-layout,
    .page-promotions-daily-rebates__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-daily-rebates__list {
        padding-left: 10px;
    }
    .page-promotions-daily-rebates__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-daily-rebates__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-daily-rebates__final-cta-image {
        width: 300px;
    }
}