/* style/promotions-daily-cashback.css */

/* General page styling */
.page-promotions-daily-cashback {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Dark gray for general text */
    background-color: #f8f8f8; /* Light background for readability */
}

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

.page-promotions-daily-cashback__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-daily-cashback__section:nth-of-type(even) {
    background-color: #eaf1f8; /* Light blueish tint for alternating sections */
}

.page-promotions-daily-cashback__section-title {
    font-size: 2.8em;
    color: #003366; /* Main color for titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-daily-cashback__section-title .highlight {
    color: #FFCC00; /* Auxiliary color for highlights */
}

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

.page-promotions-daily-cashback__text-content {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-cashback__text-content .highlight,
.page-promotions-daily-cashback__text-content .keyword {
    color: #003366;
    font-weight: bold;
}

/* Hero Section */
.page-promotions-daily-cashback__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-cashback__hero-content {
    max-width: 600px;
    z-index: 1;
    padding: 20px;
}

.page-promotions-daily-cashback__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions-daily-cashback__hero-title .highlight {
    color: #FFCC00;
}

.page-promotions-daily-cashback__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-daily-cashback__hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-daily-cashback__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-daily-cashback__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-promotions-daily-cashback__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-promotions-daily-cashback__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-promotions-daily-cashback__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
}

.page-promotions-daily-cashback__hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0.7;
    pointer-events: none;
}

.page-promotions-daily-cashback__hero-image img {
    max-height: 100%;
    width: auto;
    object-fit: cover;
}

/* Intro Section */
.page-promotions-daily-cashback__section--intro .page-promotions-daily-cashback__text-content {
    font-size: 1.2em;
    line-height: 1.8;
}

/* How It Works Section */
.page-promotions-daily-cashback__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-promotions-daily-cashback__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.08);
    transition: transform 0.3s ease;
}

.page-promotions-daily-cashback__grid-item:hover {
    transform: translateY(-10px);
}

.page-promotions-daily-cashback__grid-item img {
    max-width: 100px;
    margin-bottom: 20px;
}

.page-promotions-daily-cashback__grid-item h3 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-promotions-daily-cashback__grid-item p {
    color: #666;
    font-size: 1em;
}

/* Eligibility Section */
.page-promotions-daily-cashback__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-promotions-daily-cashback__image-left,
.page-promotions-daily-cashback__text-right {
    flex: 1;
}

.page-promotions-daily-cashback__image-left img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15);
}

.page-promotions-daily-cashback__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-promotions-daily-cashback__list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 51, 102, 0.05);
    display: flex;
    align-items: flex-start;
    font-size: 1.1em;
    color: #333;
}

.page-promotions-daily-cashback__list li::before {
    content: '✔';
    color: #FFCC00;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
}

/* Why nohu67 Section */
.page-promotions-daily-cashback__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-daily-cashback__benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.08);
    text-align: center;
}

.page-promotions-daily-cashback__benefit-item img {
    max-width: 80px;
    margin-bottom: 20px;
}

.page-promotions-daily-cashback__benefit-item h3 {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
}

.page-promotions-daily-cashback__benefit-item p {
    color: #666;
    font-size: 0.95em;
}

/* Call to Action Section */
.page-promotions-daily-cashback__section--cta {
    background: linear-gradient(45deg, #003366, #004080); /* Darker blue gradient */
    color: #fff;
    padding: 80px 0;
}

.page-promotions-daily-cashback__container--cta {
    max-width: 900px;
}

.page-promotions-daily-cashback__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFCC00;
}

.page-promotions-daily-cashback__cta-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-promotions-daily-cashback__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-daily-cashback__btn--tertiary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-promotions-daily-cashback__btn--tertiary:hover {
    background-color: #fff;
    color: #003366;
    transform: translateY(-3px);
}

/* FAQ Section */
.page-promotions-daily-cashback__faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-cashback__faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 51, 102, 0.05);
}

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

.page-promotions-daily-cashback__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

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

.page-promotions-daily-cashback__faq-answer {
    font-size: 1.05em;
    color: #555;
    display: none; /* Hidden by default */
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

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

/* Related Content Section */
.page-promotions-daily-cashback__related-content {
    padding: 60px 0;
    background-color: #f0f5fa;
}

.page-promotions-daily-cashback__related-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-daily-cashback__hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .page-promotions-daily-cashback__hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .page-promotions-daily-cashback__hero-image {
        position: static;
        width: 80%;
        max-height: 300px;
        margin-top: 30px;
        opacity: 1;
    }

    .page-promotions-daily-cashback__content-wrapper {
        flex-direction: column;
    }

    .page-promotions-daily-cashback__image-left {
        margin-bottom: 30px;
    }

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

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

    .page-promotions-daily-cashback__cta-title {
        font-size: 2.5em;
    }
}

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

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

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

    .page-promotions-daily-cashback__hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-promotions-daily-cashback__grid,
    .page-promotions-daily-cashback__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-daily-cashback__cta-title {
        font-size: 2em;
    }

    .page-promotions-daily-cashback__cta-subtitle {
        font-size: 1.1em;
    }

    .page-promotions-daily-cashback__hero-buttons,
    .page-promotions-daily-cashback__cta-buttons,
    .page-promotions-daily-cashback__related-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-cashback__hero {
        padding: 60px 15px;
    }

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

    .page-promotions-daily-cashback__section-title {
        font-size: 1.6em;
    }

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