.page-promotions-daily-rewards {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Ensure direct sections of main don't cause horizontal scroll */
.page-promotions-daily-rewards__hero-section,
.page-promotions-daily-rewards__benefits-section,
.page-promotions-daily-rewards__how-it-works-section,
.page-promotions-daily-rewards__terms-section,
.page-promotions-daily-rewards__cta-bottom-section {
    overflow-x: hidden; /* Ensure content within these sections doesn't overflow horizontally */
    width: 100%; /* Ensure they take full width */
    box-sizing: border-box; /* Include padding in width calculation */
}

.page-promotions-daily-rewards__hero-section {
    display: flex;
    flex-direction: column; /* Default for mobile, stack image then content */
    align-items: center;
    text-align: center;
    padding: 10px 20px 20px; /* Small top padding, body handles header offset */
    background-color: #F4F7FB; /* Matches page background */
    min-height: clamp(420px, 50vw, 800px); /* Responsive min-height for hero */
}

.page-promotions-daily-rewards__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    margin-bottom: 20px;
}

.page-promotions-daily-rewards__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.page-promotions-daily-rewards__hero-content {
    max-width: 800px;
    background-color: transparent; /* Default desktop */
    padding: 0 20px;
}

.page-promotions-daily-rewards__main-title {
    font-size: clamp(2rem, 4vw, 3.5rem); /* clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

.page-promotions-daily-rewards__description {
    font-size: 1.1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-promotions-daily-rewards__cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions-daily-rewards__cta-button,
.page-promotions-daily-rewards__secondary-cta-button,
.page-promotions-daily-rewards__step-cta,
.page-promotions-daily-rewards__cta-bottom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-height: 44px; /* Touch target */
}

.page-promotions-daily-rewards__cta-button,
.page-promotions-daily-rewards__cta-bottom-button {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
    color: #FFFFFF;
    border: none;
}

.page-promotions-daily-rewards__cta-button:hover,
.page-promotions-daily-rewards__cta-bottom-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-promotions-daily-rewards__secondary-cta-button {
    background-color: transparent;
    color: #2F6BFF; /* Main color */
    border: 2px solid #2F6BFF;
}

.page-promotions-daily-rewards__secondary-cta-button:hover {
    background-color: #2F6BFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.page-promotions-daily-rewards__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

/* Benefits Section */
.page-promotions-daily-rewards__benefits-section {
    padding: 60px 20px;
    background-color: #F4F7FB;
}

.page-promotions-daily-rewards__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions-daily-rewards__benefit-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-daily-rewards__benefit-icon {
    width: 250px; /* Ensure images are >= 200px */
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions-daily-rewards__benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2F6BFF; /* Main color */
    margin-bottom: 10px;
}

.page-promotions-daily-rewards__benefit-text {
    font-size: 1rem;
    color: #1F2D3D;
}

/* How It Works Section */
.page-promotions-daily-rewards__how-it-works-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.page-promotions-daily-rewards__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions-daily-rewards__step-card {
    background-color: #F4F7FB;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Distribute space */
    min-height: 300px; /* Ensure cards have some height */
}

.page-promotions-daily-rewards__step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    border: 4px solid #FFFFFF; /* Card BG for contrast */
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-promotions-daily-rewards__step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-top: 40px; /* Space for number */
    margin-bottom: 10px;
}

.page-promotions-daily-rewards__step-text {
    font-size: 1rem;
    color: #1F2D3D;
    flex-grow: 1; /* Push CTA to bottom */
    margin-bottom: 20px;
}

.page-promotions-daily-rewards__step-cta {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
    width: fit-content; /* Adjust width */
}

.page-promotions-daily-rewards__step-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

/* Terms and Conditions Section */
.page-promotions-daily-rewards__terms-section {
    padding: 60px 20px;
    background-color: #F4F7FB;
}

.page-promotions-daily-rewards__terms-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-rewards__terms-content p {
    margin-bottom: 15px;
    color: #1F2D3D;
}

.page-promotions-daily-rewards__terms-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #1F2D3D;
}

.page-promotions-daily-rewards__terms-content li {
    margin-bottom: 8px;
}

.page-promotions-daily-rewards__read-more-terms {
    display: inline-block;
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-daily-rewards__read-more-terms:hover {
    color: #6FA3FF; /* Auxiliary color */
}

/* Bottom CTA Section */
.page-promotions-daily-rewards__cta-bottom-section {
    padding: 80px 20px;
    background-color: #2F6BFF; /* Main color */
    text-align: center;
}

.page-promotions-daily-rewards__cta-bottom-content {
    max-width: 800px;
    margin: 0 auto;
    color: #FFFFFF;
}

.page-promotions-daily-rewards__cta-bottom-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-promotions-daily-rewards__cta-bottom-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 849px) {
    .page-promotions-daily-rewards__hero-section {
        padding: 10px;
    }
    .page-promotions-daily-rewards__hero-content {
        background-color: #100224; /* Deep purple-black for mobile hero content */
        color: #FFFFFF;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0 0 12px 12px;
    }
    .page-promotions-daily-rewards__main-title,
    .page-promotions-daily-rewards__description {
        color: #FFFFFF; /* Ensure text is white on dark background */
    }
    .page-promotions-daily-rewards__cta-group {
        flex-direction: column;
        width: 100%;
    }
    .page-promotions-daily-rewards__cta-button,
    .page-promotions-daily-rewards__secondary-cta-button,
    .page-promotions-daily-rewards__step-cta,
    .page-promotions-daily-rewards__cta-bottom-button {
        width: 100%;
        max-width: 320px; /* Constrain width for mobile CTA */
        margin: 0 auto;
    }
    .page-promotions-daily-rewards__hero-image-wrapper {
        border-radius: 12px 12px 0 0; /* Adjust border radius for image on mobile */
    }
    /* Ensure content area images are responsive and not too small */
    .page-promotions-daily-rewards__hero-image,
    .page-promotions-daily-rewards__benefit-icon {
        max-width: 100%;
        height: auto;
    }
    .page-promotions-daily-rewards__benefit-icon {
        width: clamp(200px, 70%, 300px); /* Example: min 200px, responsive up to 300px */
    }
    .page-promotions-daily-rewards__section-title {
        margin-top: 40px;
    }
    .page-promotions-daily-rewards__terms-content {
        padding: 25px;
    }
    .page-promotions-daily-rewards__cta-bottom-section {
        padding: 50px 20px;
    }
}

@media (max-width: 549px) {
    .page-promotions-daily-rewards__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-promotions-daily-rewards__section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-promotions-daily-rewards__cta-bottom-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-promotions-daily-rewards__benefits-grid,
    .page-promotions-daily-rewards__steps-grid {
        grid-template-columns: 1fr; /* Single column for very small screens */
    }
    .page-promotions-daily-rewards__hero-section {
        min-height: auto; /* Allow content to define height */
    }
    .page-promotions-daily-rewards__benefit-card,
    .page-promotions-daily-rewards__step-card {
        padding: 25px;
    }
    .page-promotions-daily-rewards__step-title {
        margin-top: 30px;
    }
    .page-promotions-daily-rewards__terms-content ul {
        margin-left: 20px;
    }
}