.page-promo-daily-cashback {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-promo-daily-cashback__hero-section {
    background-color: #000000; /* Dark background for hero */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promo-daily-cashback__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.page-promo-daily-cashback__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-promo-daily-cashback__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-promo-daily-cashback__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FCBC45; /* Golden yellow for emphasis */
    line-height: 1.2;
}

.page-promo-daily-cashback__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.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.3s ease;
    min-width: 180px;
    text-align: center;
}

.page-promo-daily-cashback__button--register {
    background-color: #FCBC45; /* Login color for Register */
    color: #000000; /* Dark text for golden button */
}

.page-promo-daily-cashback__button--register:hover {
    background-color: #e0a53b;
    transform: translateY(-3px);
}

.page-promo-daily-cashback__button--login {
    background-color: #FFFFFF; /* White for Login */
    color: #000000; /* Dark text for white button */
    border: 2px solid #FCBC45;
}

.page-promo-daily-cashback__button--login:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.page-promo-daily-cashback__button--learn-more {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-promo-daily-cashback__button--learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.page-promo-daily-cashback__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-promo-daily-cashback__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promo-daily-cashback__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    margin: 15px auto 0;
}

.page-promo-daily-cashback__text-block {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promo-daily-cashback__step-card {
    background-color: #FFFFFF;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo-daily-cashback__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promo-daily-cashback__step-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
    object-fit: cover;
}

.page-promo-daily-cashback__step-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo-daily-cashback__step-description {
    font-size: 1em;
    color: #555555;
    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: 60px;
}

.page-promo-daily-cashback__feature-card {
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.page-promo-daily-cashback__feature-card:hover {
    background-color: #FCBC45;
    color: #000000;
}

.page-promo-daily-cashback__feature-card:hover .page-promo-daily-cashback__feature-title,
.page-promo-daily-cashback__feature-card:hover .page-promo-daily-cashback__feature-description {
    color: #000000;
}

.page-promo-daily-cashback__feature-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
    object-fit: cover;
}

.page-promo-daily-cashback__feature-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
}

.page-promo-daily-cashback__feature-description {
    font-size: 1em;
    color: #666666;
}

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

.page-promo-daily-cashback__why-item {
    background-color: #FFFFFF;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo-daily-cashback__why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promo-daily-cashback__why-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
    object-fit: cover;
}

.page-promo-daily-cashback__why-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo-daily-cashback__why-description {
    font-size: 1em;
    color: #555555;
}

.page-promo-daily-cashback__faq-container {
    max-width: 900px;
    margin: 40px auto 60px auto;
}

.page-promo-daily-cashback__faq-item {
    background-color: #F8F8F8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo-daily-cashback__faq-question {
    font-size: 1.2em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promo-daily-cashback__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    color: #FCBC45;
    transition: transform 0.3s ease;
}

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

.page-promo-daily-cashback__faq-answer {
    font-size: 1em;
    color: #555555;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: none;
}

.page-promo-daily-cashback__faq-answer.active {
    display: block;
}

.page-promo-daily-cashback__call-to-action {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promo-daily-cashback__button--explore {
    background-color: #000000;
    color: #FFFFFF;
}

.page-promo-daily-cashback__button--explore:hover {
    background-color: #333333;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@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 {
        width: 100%;
        max-width: 300px;
    }

    .page-promo-daily-cashback__section-title {
        font-size: 2em;
    }

    .page-promo-daily-cashback__text-block {
        font-size: 0.95em;
    }

    .page-promo-daily-cashback__step-by-step,
    .page-promo-daily-cashback__features-grid,
    .page-promo-daily-cashback__why-choose-us {
        grid-template-columns: 1fr;
    }

    .page-promo-daily-cashback__step-card img,
    .page-promo-daily-cashback__feature-card img,
    .page-promo-daily-cashback__why-item img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }

    .page-promo-daily-cashback__faq-question {
        font-size: 1.1em;
    }

    .page-promo-daily-cashback__content-area {
        padding: 40px 15px;
    }

    /* Prevent horizontal scrolling */
    .page-promo-daily-cashback {
        overflow-x: hidden;
    }
    .page-promo-daily-cashback__hero-section img,
    .page-promo-daily-cashback__content-area img {
        max-width: 100%;
        height: auto;
    }
}

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

    .page-promo-daily-cashback__hero-section {
        padding: 60px 15px;
    }

    .page-promo-daily-cashback__section-title {
        font-size: 1.8em;
    }

    .page-promo-daily-cashback__button {
        padding: 12px 20px;
        font-size: 1em;
    }
}