/* style/promo-daily-cashback.css */
.page-promo-daily-cashback {
    color: #333333; /* Dark text for light body background #f8f9fa */
}

.page-promo-daily-cashback__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    min-height: 500px;
}

.page-promo-daily-cashback__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6); /* Slightly darken background image for text readability */
}

.page-promo-daily-cashback__hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay for text */
    border-radius: 10px;
}

.page-promo-daily-cashback__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffc107; /* Auxiliary color for emphasis */
    line-height: 1.2;
}

.page-promo-daily-cashback__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-promo-daily-cashback__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-promo-daily-cashback__button--primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #000000;
    border: 2px solid #ffc107;
}

.page-promo-daily-cashback__button--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-promo-daily-cashback__button--secondary {
    background-color: transparent;
    color: #ffc107; /* Auxiliary color */
    border: 2px solid #ffc107;
}

.page-promo-daily-cashback__button--secondary:hover {
    background-color: #ffc107;
    color: #000000;
    transform: translateY(-2px);
}

.page-promo-daily-cashback__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-promo-daily-cashback__section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promo-daily-cashback__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Auxiliary color */
    border-radius: 2px;
}

.page-promo-daily-cashback__subsection-title {
    font-size: 1.8em;
    color: #007bff; /* Primary color */
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.page-promo-daily-cashback__text-content {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promo-daily-cashback__text-content a {
    color: #007bff;
    text-decoration: underline;
}

.page-promo-daily-cashback__image {
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}

.page-promo-daily-cashback__image--center {
    margin-left: auto;
    margin-right: auto;
}

.page-promo-daily-cashback__image--left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}

.page-promo-daily-cashback__image--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-promo-daily-cashback__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-promo-daily-cashback__feature-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo-daily-cashback__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-promo-daily-cashback__feature-title {
    font-size: 1.5em;
    color: #007bff; /* Primary color */
    margin-bottom: 15px;
}

.page-promo-daily-cashback__feature-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

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

.page-promo-daily-cashback__benefit-item {
    background-color: #e6f2ff; /* Lighter shade of primary color */
    border-left: 5px solid #007bff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.page-promo-daily-cashback__benefit-item:hover {
    background-color: #d0e7ff;
}

.page-promo-daily-cashback__benefit-title {
    font-size: 1.4em;
    color: #007bff; /* Primary color */
    margin-bottom: 10px;
}

.page-promo-daily-cashback__benefit-description {
    font-size: 1em;
    line-height: 1.6;
    color: #444444;
}

.page-promo-daily-cashback__claim-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 40px;
}

.page-promo-daily-cashback__step-item {
    position: relative;
    padding: 20px 0 20px 80px;
    border-bottom: 1px dashed #cccccc;
}

.page-promo-daily-cashback__step-item:last-child {
    border-bottom: none;
}

.page-promo-daily-cashback__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #007bff; /* Primary color */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-promo-daily-cashback__step-title {
    font-size: 1.6em;
    color: #007bff; /* Primary color */
    margin-bottom: 10px;
}

.page-promo-daily-cashback__step-description {
    font-size: 1.05em;
    line-height: 1.7;
    color: #555555;
}

.page-promo-daily-cashback__cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: #f0f8ff; /* Light background for CTA */
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-promo-daily-cashback__cta-block .page-promo-daily-cashback__button {
    margin-top: 20px;
}

.page-promo-daily-cashback__terms-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 30px;
    font-size: 1.05em;
    line-height: 1.8;
    color: #444444;
}

.page-promo-daily-cashback__term-item {
    margin-bottom: 10px;
}

.page-promo-daily-cashback__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.page-promo-daily-cashback__faq-question {
    font-size: 1.3em;
    color: #007bff; /* Primary color */
    margin-bottom: 10px;
    cursor: pointer;
}

.page-promo-daily-cashback__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

.page-promo-daily-cashback__cta-section--bottom {
    background-color: #007bff; /* Primary color background */
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}

.page-promo-daily-cashback__cta-section--bottom .page-promo-daily-cashback__section-title,
.page-promo-daily-cashback__cta-section--bottom .page-promo-daily-cashback__text-content {
    color: #ffffff;
}

.page-promo-daily-cashback__cta-section--bottom .page-promo-daily-cashback__section-title::after {
    background-color: #ffc107;
}

.page-promo-daily-cashback__cta-section--bottom .page-promo-daily-cashback__button--primary {
    background-color: #ffc107;
    color: #000000;
    border-color: #ffc107;
}

.page-promo-daily-cashback__cta-section--bottom .page-promo-daily-cashback__button--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

.page-promo-daily-cashback__cta-section--bottom .page-promo-daily-cashback__button--secondary {
    color: #ffffff;
    border-color: #ffffff;
}

.page-promo-daily-cashback__cta-section--bottom .page-promo-daily-cashback__button--secondary:hover {
    background-color: #ffffff;
    color: #007bff;
}

.page-promo-daily-cashback__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promo-daily-cashback__hero-title {
        font-size: 3em;
    }
    .page-promo-daily-cashback__hero-description {
        font-size: 1.2em;
    }
    .page-promo-daily-cashback__section-title {
        font-size: 2em;
    }
    .page-promo-daily-cashback__subsection-title {
        font-size: 1.6em;
    }
    .page-promo-daily-cashback__text-content {
        font-size: 1em;
    }
    .page-promo-daily-cashback__image--left,
    .page-promo-daily-cashback__image--right {
        float: none;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .page-promo-daily-cashback__hero-title {
        font-size: 2.2em;
    }
    .page-promo-daily-cashback__hero-description {
        font-size: 1em;
    }
    .page-promo-daily-cashback__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo-daily-cashback__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo-daily-cashback__section-title {
        font-size: 1.8em;
    }
    .page-promo-daily-cashback__subsection-title {
        font-size: 1.4em;
    }
    .page-promo-daily-cashback__features-grid,
    .page-promo-daily-cashback__benefits-list {
        grid-template-columns: 1fr;
    }
    .page-promo-daily-cashback__step-item {
        padding-left: 60px;
    }
    .page-promo-daily-cashback__step-item::before {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-promo-daily-cashback__step-title {
        font-size: 1.4em;
    }
    .page-promo-daily-cashback__image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px;
    }
    /* Mobile content area images must use max-width: 100%; height: auto; */
    .page-promo-daily-cashback img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-promo-daily-cashback__container {
        padding: 20px 15px;
    }
    .page-promo-daily-cashback__cta-section--bottom {
        padding: 40px 15px;
    }
    .page-promo-daily-cashback__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-promo-daily-cashback__hero-title {
        font-size: 1.8em;
    }
    .page-promo-daily-cashback__hero-description {
        font-size: 0.9em;
    }
    .page-promo-daily-cashback__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promo-daily-cashback__section-title {
        font-size: 1.5em;
    }
    .page-promo-daily-cashback__subsection-title {
        font-size: 1.2em;
    }
    .page-promo-daily-cashback__feature-title,
    .page-promo-daily-cashback__benefit-title {
        font-size: 1.2em;
    }
    .page-promo-daily-cashback__step-title {
        font-size: 1.2em;
    }
    .page-promo-daily-cashback__faq-question {
        font-size: 1.1em;
    }
}