/* style/promotions-daily-cashback-rules.css */
.page-promotions-daily-cashback-rules {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #E2E8F0; /* Light gray for main text on dark background */
    background-color: #1A202C; /* Main background color */
}

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

.page-promotions-daily-cashback-rules__hero {
    background: linear-gradient(135deg, #1A202C, #2D3748);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
    flex-wrap: wrap;
}

.page-promotions-daily-cashback-rules__hero-content {
    max-width: 700px;
}

.page-promotions-daily-cashback-rules__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Auxiliary color for titles */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions-daily-cashback-rules__hero-description {
    font-size: 1.2em;
    color: #CBD5E0; /* Slightly darker light gray for descriptions */
    margin-bottom: 30px;
}

.page-promotions-daily-cashback-rules__hero-image {
    flex-shrink: 0;
}

.page-promotions-daily-cashback-rules__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-cashback-rules__image--centered {
    display: block;
    margin: 40px auto;
    max-width: 80%;
}

.page-promotions-daily-cashback-rules__image--large {
    max-width: 90%;
}

.page-promotions-daily-cashback-rules__image--small {
    max-width: 60%;
}

.page-promotions-daily-cashback-rules__image--full-width {
    width: 100%;
    margin: 40px 0;
}

.page-promotions-daily-cashback-rules__section {
    padding: 60px 0;
}

.page-promotions-daily-cashback-rules__section--dark {
    background-color: #2D3748;
}

.page-promotions-daily-cashback-rules__heading {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
}

.page-promotions-daily-cashback-rules__sub-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-promotions-daily-cashback-rules__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E2E8F0;
}

.page-promotions-daily-cashback-rules__list,
.page-promotions-daily-cashback-rules__numbered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E2E8F0;
}

.page-promotions-daily-cashback-rules__numbered-list {
    list-style-type: decimal;
}

.page-promotions-daily-cashback-rules__list li,
.page-promotions-daily-cashback-rules__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-promotions-daily-cashback-rules__list li strong {
    color: #FFD700;
}

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

.page-promotions-daily-cashback-rules__button--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-promotions-daily-cashback-rules__button--primary:hover {
    background-color: #e6c200;
}

.page-promotions-daily-cashback-rules__button--secondary {
    background-color: #4A5568;
    color: #E2E8F0;
    border: 1px solid #FFD700;
}

.page-promotions-daily-cashback-rules__button--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-promotions-daily-cashback-rules__button--download {
    background-color: #38A169; /* A green tone for download */
    color: #FFFFFF;
}

.page-promotions-daily-cashback-rules__button--download:hover {
    background-color: #2F855A;
}

.page-promotions-daily-cashback-rules__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

.page-promotions-daily-cashback-rules__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-daily-cashback-rules__card {
    background-color: #1A202C;
    border: 1px solid #4A5568;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-daily-cashback-rules__card-description {
    color: #CBD5E0;
    font-size: 1em;
}

.page-promotions-daily-cashback-rules__formula,
.page-promotions-daily-cashback-rules__example {
    background-color: #2D3748;
    padding: 15px;
    border-left: 5px solid #FFD700;
    margin: 25px 0;
    font-family: 'Courier New', monospace;
    font-size: 1.1em;
    color: #E2E8F0;
    border-radius: 4px;
}

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

.page-promotions-daily-cashback-rules__product-list li {
    background-color: #2D3748;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-daily-cashback-rules__product-list li:hover {
    transform: translateY(-5px);
}

.page-promotions-daily-cashback-rules__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust to golden tone */
}

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

.page-promotions-daily-cashback-rules__product-description {
    color: #CBD5E0;
    font-size: 0.95em;
}

.page-promotions-daily-cashback-rules__faq-accordion {
    margin-top: 40px;
}

.page-promotions-daily-cashback-rules__faq-item {
    background-color: #2D3748;
    border: 1px solid #4A5568;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-daily-cashback-rules__faq-question {
    font-size: 1.2em;
    color: #FFD700;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

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

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

.page-promotions-daily-cashback-rules__faq-answer {
    padding: 0 20px 20px;
    color: #CBD5E0;
    font-size: 1.05em;
    display: none;
}

.page-promotions-daily-cashback-rules__cta-section {
    background: linear-gradient(90deg, #FFD700, #e6c200);
    padding: 80px 0;
    text-align: center;
    color: #1A202C;
}

.page-promotions-daily-cashback-rules__cta-title {
    font-size: 2.8em;
    color: #1A202C;
    margin-bottom: 20px;
}

.page-promotions-daily-cashback-rules__cta-description {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

    .page-promotions-daily-cashback-rules__hero-title {
        font-size: 2.8em;
    }

    .page-promotions-daily-cashback-rules__hero-description {
        font-size: 1.1em;
    }

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

    .page-promotions-daily-cashback-rules__sub-heading {
        font-size: 1.6em;
    }

    .page-promotions-daily-cashback-rules__grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-daily-cashback-rules__product-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .page-promotions-daily-cashback-rules__cta-title {
        font-size: 2.2em;
    }

    .page-promotions-daily-cashback-rules__cta-description {
        font-size: 1.1em;
    }
}

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

    .page-promotions-daily-cashback-rules__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-daily-cashback-rules__hero-description {
        font-size: 1em;
    }

    .page-promotions-daily-cashback-rules__heading {
        font-size: 1.8em;
    }

    .page-promotions-daily-cashback-rules__sub-heading {
        font-size: 1.4em;
    }

    .page-promotions-daily-cashback-rules__paragraph,
    .page-promotions-daily-cashback-rules__list li,
    .page-promotions-daily-cashback-rules__numbered-list li,
    .page-promotions-daily-cashback-rules__card-description,
    .page-promotions-daily-cashback-rules__product-description,
    .page-promotions-daily-cashback-rules__faq-answer {
        font-size: 0.95em;
    }

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

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

    .page-promotions-daily-cashback-rules__cta-description {
        font-size: 1em;
    }
}

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

    .page-promotions-daily-cashback-rules__heading {
        font-size: 1.5em;
    }

    .page-promotions-daily-cashback-rules__sub-heading {
        font-size: 1.2em;
    }

    .page-promotions-daily-cashback-rules__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }

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