:root {
    --nh88-primary-color: #003366;
    --nh88-secondary-color: #FFCC00;
    --nh88-text-dark: #333333;
    --nh88-text-light: #ffffff;
    --nh88-bg-light: #f8f8f8;
    --nh88-bg-dark: #002244;
    --nh88-accent-color: #e6b800; /* Slightly darker gold for contrast */
}

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

.page-nh88-exclusive-benefits .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-nh88-exclusive-benefits h1,
.page-nh88-exclusive-benefits h2,
.page-nh88-exclusive-benefits h3 {
    color: var(--nh88-primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.page-nh88-exclusive-benefits h1 {
    font-size: 2.8em;
    color: var(--nh88-text-light);
}

.page-nh88-exclusive-benefits h2 {
    font-size: 2.2em;
    margin-top: 40px;
    border-bottom: 2px solid var(--nh88-secondary-color);
    padding-bottom: 10px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.page-nh88-exclusive-benefits h3 {
    font-size: 1.8em;
    color: var(--nh88-primary-color);
}

.page-nh88-exclusive-benefits p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

.page-nh88-exclusive-benefits .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-nh88-exclusive-benefits .btn-primary {
    background-color: var(--nh88-secondary-color);
    color: var(--nh88-primary-color);
    border: 2px solid var(--nh88-secondary-color);
}

.page-nh88-exclusive-benefits .btn-primary:hover {
    background-color: var(--nh88-accent-color);
    border-color: var(--nh88-accent-color);
    color: var(--nh88-primary-color);
}

.page-nh88-exclusive-benefits .btn-secondary {
    background-color: transparent;
    color: var(--nh88-secondary-color);
    border: 2px solid var(--nh88-secondary-color);
}

.page-nh88-exclusive-benefits .btn-secondary:hover {
    background-color: var(--nh88-secondary-color);
    color: var(--nh88-primary-color);
}

.page-nh88-exclusive-benefits .btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
    background-color: var(--nh88-primary-color);
    color: var(--nh88-text-light);
    border: 1px solid var(--nh88-primary-color);
}

.page-nh88-exclusive-benefits .btn-small:hover {
    background-color: var(--nh88-bg-dark);
    border-color: var(--nh88-bg-dark);
}

/* Hero Section */
.page-nh88-exclusive-benefits .hero-section {
    background: linear-gradient(135deg, var(--nh88-primary-color) 0%, var(--nh88-bg-dark) 100%);
    color: var(--nh88-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-nh88-exclusive-benefits .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Overlay for text readability */
    z-index: 1;
}

.page-nh88-exclusive-benefits .hero-section .container {
    position: relative;
    z-index: 2;
}

.page-nh88-exclusive-benefits .hero-section h1 {
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-nh88-exclusive-benefits .hero-section p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.2em;
    text-align: center;
}

.page-nh88-exclusive-benefits .hero-section .btn {
    margin-top: 20px;
    font-size: 1.2em;
}

.page-nh88-exclusive-benefits .hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Introduction Section */
.page-nh88-exclusive-benefits .introduction-section {
    padding: 60px 0;
    background-color: var(--nh88-bg-light);
}

.page-nh88-exclusive-benefits .introduction-section p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-nh88-exclusive-benefits .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-nh88-exclusive-benefits .feature-item {
    background-color: var(--nh88-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid var(--nh88-secondary-color);
}

.page-nh88-exclusive-benefits .feature-item h3 {
    color: var(--nh88-primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-nh88-exclusive-benefits .feature-item p {
    font-size: 1em;
    color: var(--nh88-text-dark);
    text-align: center;
}

/* Benefits Overview Section */
.page-nh88-exclusive-benefits .benefits-overview {
    background-color: var(--nh88-bg-dark);
    color: var(--nh88-text-light);
    padding: 60px 0;
    text-align: center;
}

.page-nh88-exclusive-benefits .benefits-overview h2 {
    color: var(--nh88-secondary-color);
    border-color: var(--nh88-primary-color);
}

.page-nh88-exclusive-benefits .benefits-overview p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    color: var(--nh88-text-light);
}

.page-nh88-exclusive-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-nh88-exclusive-benefits .benefit-card {
    background-color: var(--nh88-primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-nh88-exclusive-benefits .benefit-card .benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-nh88-exclusive-benefits .benefit-card h3 {
    color: var(--nh88-secondary-color);
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-nh88-exclusive-benefits .benefit-card p {
    font-size: 1em;
    color: var(--nh88-text-light);
    text-align: center;
}

/* Exclusive Offers List Section */
.page-nh88-exclusive-benefits .exclusive-offers-list {
    padding: 60px 0;
    background-color: var(--nh88-bg-light);
}

.page-nh88-exclusive-benefits .exclusive-offers-list h2,
.page-nh88-exclusive-benefits .exclusive-offers-list p {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-nh88-exclusive-benefits .offer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    background-color: var(--nh88-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-nh88-exclusive-benefits .offer-item:nth-child(even) {
    flex-direction: column-reverse; /* For alternating image/text layout on mobile */
}

.page-nh88-exclusive-benefits .offer-item .offer-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.page-nh88-exclusive-benefits .offer-item .offer-content {
    padding: 30px;
    text-align: center;
}

.page-nh88-exclusive-benefits .offer-item .offer-content h3 {
    color: var(--nh88-primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-nh88-exclusive-benefits .offer-item .offer-content h3 a {
    color: var(--nh88-primary-color);
    text-decoration: none;
}

.page-nh88-exclusive-benefits .offer-item .offer-content h3 a:hover {
    color: var(--nh88-secondary-color);
}

.page-nh88-exclusive-benefits .offer-item .offer-content p {
    font-size: 1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* How to Claim Section */
.page-nh88-exclusive-benefits .how-to-claim {
    padding: 60px 0;
    background-color: var(--nh88-primary-color);
    color: var(--nh88-text-light);
    text-align: center;
}

.page-nh88-exclusive-benefits .how-to-claim h2 {
    color: var(--nh88-secondary-color);
    border-color: var(--nh88-bg-dark);
}

.page-nh88-exclusive-benefits .how-to-claim p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    color: var(--nh88-text-light);
}

.page-nh88-exclusive-benefits .how-to-claim ol {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.page-nh88-exclusive-benefits .how-to-claim ol li {
    background-color: var(--nh88-bg-dark);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 70px;
    font-size: 1.1em;
}

.page-nh88-exclusive-benefits .how-to-claim ol li strong {
    color: var(--nh88-secondary-color);
}

.page-nh88-exclusive-benefits .how-to-claim ol li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: var(--nh88-secondary-color);
    color: var(--nh88-primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Safety & Security Section */
.page-nh88-exclusive-benefits .safety-security {
    padding: 60px 0;
    background-color: var(--nh88-bg-light);
    text-align: center;
}

.page-nh88-exclusive-benefits .safety-security p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-nh88-exclusive-benefits .security-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-nh88-exclusive-benefits .call-to-action {
    background: linear-gradient(45deg, var(--nh88-primary-color), var(--nh88-secondary-color));
    color: var(--nh88-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-nh88-exclusive-benefits .call-to-action h2 {
    color: var(--nh88-text-light);
    border-color: var(--nh88-accent-color);
}

.page-nh88-exclusive-benefits .call-to-action p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--nh88-text-light);
}

.page-nh88-exclusive-benefits .call-to-action .btn {
    margin: 0 15px;
    font-size: 1.2em;
}

.page-nh88-exclusive-benefits .call-to-action .btn-primary {
    background-color: var(--nh88-primary-color);
    color: var(--nh88-secondary-color);
    border-color: var(--nh88-primary-color);
}

.page-nh88-exclusive-benefits .call-to-action .btn-primary:hover {
    background-color: var(--nh88-bg-dark);
    border-color: var(--nh88-bg-dark);
    color: var(--nh88-secondary-color);
}

.page-nh88-exclusive-benefits .call-to-action .btn-secondary {
    background-color: var(--nh88-secondary-color);
    color: var(--nh88-primary-color);
    border-color: var(--nh88-secondary-color);
}

.page-nh88-exclusive-benefits .call-to-action .btn-secondary:hover {
    background-color: var(--nh88-accent-color);
    border-color: var(--nh88-accent-color);
    color: var(--nh88-primary-color);
}

/* FAQ Section */
.page-nh88-exclusive-benefits .faq-section {
    padding: 60px 0;
    background-color: var(--nh88-text-light);
}

.page-nh88-exclusive-benefits .faq-section h2 {
    margin-bottom: 40px;
}

.page-nh88-exclusive-benefits .faq-item {
    background-color: var(--nh88-bg-light);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-nh88-exclusive-benefits .faq-item h3 {
    text-align: left;
    font-size: 1.6em;
    color: var(--nh88-primary-color);
    margin-bottom: 10px;
}

.page-nh88-exclusive-benefits .faq-item p {
    text-align: left;
    font-size: 1em;
    color: var(--nh88-text-dark);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-nh88-exclusive-benefits .offer-item {
        flex-direction: row;
        text-align: left;
    }

    .page-nh88-exclusive-benefits .offer-item.reverse {
        flex-direction: row-reverse;
    }

    .page-nh88-exclusive-benefits .offer-item .offer-image {
        width: 40%;
        height: auto;
        min-height: 300px;
    }

    .page-nh88-exclusive-benefits .offer-item .offer-content {
        width: 60%;
        padding: 40px;
        text-align: left;
    }

    .page-nh88-exclusive-benefits .offer-item .offer-content h3 {
        text-align: left;
    }

    .page-nh88-exclusive-benefits .hero-section h1 {
        font-size: 3.5em;
    }

    .page-nh88-exclusive-benefits .hero-section p {
        font-size: 1.3em;
    }

    .page-nh88-exclusive-benefits .how-to-claim ol {
        counter-reset: step-counter;
    }
}

@media (max-width: 767px) {
    .page-nh88-exclusive-benefits h1 {
        font-size: 2em;
    }

    .page-nh88-exclusive-benefits h2 {
        font-size: 1.8em;
    }

    .page-nh88-exclusive-benefits h3 {
        font-size: 1.4em;
    }

    .page-nh88-exclusive-benefits .hero-section {
        padding: 60px 0;
    }

    .page-nh88-exclusive-benefits .hero-section p {
        font-size: 1em;
    }

    .page-nh88-exclusive-benefits .btn {
        width: 100%;
        margin: 10px 0;
    }

    .page-nh88-exclusive-benefits .call-to-action .btn {
        margin: 10px auto;
        display: block;
    }

    .page-nh88-exclusive-benefits .how-to-claim ol li {
        padding-left: 60px;
        font-size: 1em;
    }

    .page-nh88-exclusive-benefits .how-to-claim ol li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
        left: 10px;
    }
}