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

.page-promotion-activities-daily-rebate__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotion-activities-daily-rebate__hero-section {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-promotion-activities-daily-rebate__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-promotion-activities-daily-rebate__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transform: rotate(-45deg);
}

.page-promotion-activities-daily-rebate__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotion-activities-daily-rebate__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-promotion-activities-daily-rebate__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotion-activities-daily-rebate__cta-group--center {
    margin-top: 40px;
}

.page-promotion-activities-daily-rebate__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotion-activities-daily-rebate__btn--primary {
    background-color: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
}

.page-promotion-activities-daily-rebate__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
}

.page-promotion-activities-daily-rebate__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-promotion-activities-daily-rebate__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.page-promotion-activities-daily-rebate__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 25px;
    margin-top: 15px;
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
    box-shadow: none;
}

.page-promotion-activities-daily-rebate__btn--small:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-promotion-activities-daily-rebate__content-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotion-activities-daily-rebate__content-section:last-of-type {
    margin-bottom: 0;
}

.page-promotion-activities-daily-rebate__section-title {
    font-size: 2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotion-activities-daily-rebate__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffc107;
    border-radius: 5px;
}

.page-promotion-activities-daily-rebate__sub-title {
    font-size: 1.5em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotion-activities-daily-rebate__content-section p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-promotion-activities-daily-rebate__content-section strong {
    color: #007bff;
}

.page-promotion-activities-daily-rebate__content-section a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.page-promotion-activities-daily-rebate__content-section a:hover {
    color: #ffc107;
    text-decoration: underline;
}

.page-promotion-activities-daily-rebate__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotion-activities-daily-rebate__list li {
    background-color: #e9f5ff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    font-size: 1.05em;
    color: #333;
}

.page-promotion-activities-daily-rebate__list--benefits li {
    background-color: #fcf8e3;
    border-left: 5px solid #ffc107;
}

.page-promotion-activities-daily-rebate__numbered-list {
    list-style: none;
    counter-reset: my-counter;
    padding: 0;
}

.page-promotion-activities-daily-rebate__numbered-list li {
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.page-promotion-activities-daily-rebate__numbered-list li::before {
    content: counter(my-counter);
    counter-increment: my-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #007bff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotion-activities-daily-rebate__numbered-list li h3 {
    color: #007bff;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotion-activities-daily-rebate__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotion-activities-daily-rebate__image--medium {
    max-width: 800px;
}

.page-promotion-activities-daily-rebate__image--large {
    max-width: 1000px;
}

.page-promotion-activities-daily-rebate__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-promotion-activities-daily-rebate__card {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotion-activities-daily-rebate__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotion-activities-daily-rebate__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.page-promotion-activities-daily-rebate__card-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-promotion-activities-daily-rebate__card-description {
    font-size: 0.95em;
    color: #555;
    padding: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotion-activities-daily-rebate__main-title {
        font-size: 2.2em;
    }

    .page-promotion-activities-daily-rebate__intro-text {
        font-size: 1em;
    }

    .page-promotion-activities-daily-rebate__section-title {
        font-size: 1.8em;
    }

    .page-promotion-activities-daily-rebate__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotion-activities-daily-rebate__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotion-activities-daily-rebate__numbered-list li {
        padding-left: 50px;
    }

    .page-promotion-activities-daily-rebate__numbered-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-promotion-activities-daily-rebate__main-title {
        font-size: 1.8em;
    }

    .page-promotion-activities-daily-rebate__section-title {
        font-size: 1.5em;
    }

    .page-promotion-activities-daily-rebate__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-promotion-activities-daily-rebate__grid {
        grid-template-columns: 1fr;
    }

    .page-promotion-activities-daily-rebate__card-image {
        height: 180px;
    }
}