:root {
    --nh88-primary-dark: #003366;
    --nh88-primary-light: #4d7094; /* Lighter shade for text on dark bg */
    --nh88-accent-gold: #FFCC00;
    --nh88-accent-dark-gold: #b38f00; /* Darker shade for text on gold bg */
    --nh88-text-light: #ffffff;
    --nh88-text-dark: #333333;
    --nh88-background-light: #f4f7f6;
    --nh88-border-color: #e0e0e0;
}

.page-promotions-daily-cashback {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--nh88-text-dark);
    background-color: var(--nh88-background-light);
}

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

.page-promotions-daily-cashback__hero {
    background: linear-gradient(135deg, var(--nh88-primary-dark) 0%, #004488 100%);
    color: var(--nh88-text-light);
    padding: 100px 0;
    text-align: center;
}

.page-promotions-daily-cashback__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--nh88-accent-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.page-promotions-daily-cashback__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.page-promotions-daily-cashback__cta-button {
    display: inline-block;
    background-color: var(--nh88-accent-gold);
    color: var(--nh88-primary-dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--nh88-accent-gold);
}

.page-promotions-daily-cashback__cta-button:hover {
    background-color: var(--nh88-text-light);
    color: var(--nh88-primary-dark);
    transform: translateY(-3px);
}

.page-promotions-daily-cashback__cta-button--centered {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-daily-cashback__section {
    padding: 80px 0;
    background-color: var(--nh88-background-light);
}

.page-promotions-daily-cashback__section:nth-of-type(even) {
    background-color: #e8eceb;
}

.page-promotions-daily-cashback__section-title {
    font-size: 2.5em;
    color: var(--nh88-primary-dark);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-daily-cashback__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--nh88-accent-gold);
    border-radius: 2px;
}

.page-promotions-daily-cashback__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: var(--nh88-text-dark);
}

.page-promotions-daily-cashback__sub-title {
    font-size: 1.8em;
    color: var(--nh88-primary-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions-daily-cashback__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-promotions-daily-cashback__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-promotions-daily-cashback__text-content {
    flex: 1;
}

.page-promotions-daily-cashback__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-promotions-daily-cashback__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-cashback__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-daily-cashback__step-card {
    background-color: var(--nh88-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--nh88-accent-gold);
    transition: transform 0.3s ease;
}

.page-promotions-daily-cashback__step-card:hover {
    transform: translateY(-5px);
}

.page-promotions-daily-cashback__step-title {
    font-size: 1.6em;
    color: var(--nh88-primary-dark);
    margin-bottom: 15px;
}

.page-promotions-daily-cashback__list {
    list-style: decimal;
    padding-left: 20px;
}

.page-promotions-daily-cashback__list li {
    margin-bottom: 10px;
}

.page-promotions-daily-cashback__list li strong {
    color: var(--nh88-primary-dark);
}

.page-promotions-daily-cashback__list li a {
    color: var(--nh88-primary-dark);
    text-decoration: underline;
}

.page-promotions-daily-cashback__image-full-width {
    margin-top: 60px;
    text-align: center;
}

.page-promotions-daily-cashback__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-daily-cashback__advantage-card {
    background-color: var(--nh88-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--nh88-primary-dark);
}

.page-promotions-daily-cashback__advantage-card .page-promotions-daily-cashback__sub-title {
    font-size: 1.5em;
    margin-top: 0;
}

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

.page-promotions-daily-cashback__feature-card {
    background-color: var(--nh88-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-promotions-daily-cashback__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-promotions-daily-cashback__feature-card .page-promotions-daily-cashback__sub-title {
    font-size: 1.4em;
    margin-top: 0;
    color: var(--nh88-primary-dark);
}

.page-promotions-daily-cashback__faq-list {
    margin-top: 40px;
}

.page-promotions-daily-cashback__faq-item {
    background-color: var(--nh88-text-light);
    border: 1px solid var(--nh88-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-daily-cashback__faq-question {
    font-size: 1.3em;
    color: var(--nh88-primary-dark);
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-daily-cashback__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: var(--nh88-accent-gold);
}

.page-promotions-daily-cashback__faq-question.active::after {
    content: '-';
}

.page-promotions-daily-cashback__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-daily-cashback__faq-answer p {
    padding-bottom: 20px;
    margin: 0;
    color: var(--nh88-text-dark);
}

.page-promotions-daily-cashback__faq-question.active + .page-promotions-daily-cashback__faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding-top: 10px;
    padding-bottom: 20px;
}

.page-promotions-daily-cashback__cta-final {
    text-align: center;
    background-color: var(--nh88-primary-dark);
    color: var(--nh88-text-light);
}

.page-promotions-daily-cashback__cta-final .page-promotions-daily-cashback__section-title {
    color: var(--nh88-accent-gold);
}

.page-promotions-daily-cashback__cta-final .page-promotions-daily-cashback__section-title::after {
    background-color: var(--nh88-text-light);
}

.page-promotions-daily-cashback__cta-final .page-promotions-daily-cashback__section-description {
    color: var(--nh88-text-light);
    margin-bottom: 40px;
}

.page-promotions-daily-cashback__cta-final .page-promotions-daily-cashback__cta-button {
    background-color: var(--nh88-accent-gold);
    color: var(--nh88-primary-dark);
    border-color: var(--nh88-accent-gold);
}

.page-promotions-daily-cashback__cta-final .page-promotions-daily-cashback__cta-button:hover {
    background-color: var(--nh88-text-light);
    color: var(--nh88-primary-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-cashback__content-wrapper {
        flex-direction: column;
    }
    .page-promotions-daily-cashback__content-wrapper--reversed {
        flex-direction: column;
    }
    .page-promotions-daily-cashback__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-daily-cashback__section-title {
        font-size: 2em;
    }
    .page-promotions-daily-cashback__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-cashback__hero {
        padding: 80px 0;
    }
    .page-promotions-daily-cashback__hero-title {
        font-size: 2em;
    }
    .page-promotions-daily-cashback__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-daily-cashback__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-daily-cashback__section {
        padding: 60px 0;
    }
    .page-promotions-daily-cashback__section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-cashback__section-description {
        font-size: 1em;
    }
    .page-promotions-daily-cashback__sub-title {
        font-size: 1.4em;
    }
    .page-promotions-daily-cashback__steps-grid, .page-promotions-daily-cashback__advantages-grid, .page-promotions-daily-cashback__features-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-daily-cashback__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-daily-cashback__faq-answer p {
        font-size: 0.95em;
    }
}