/* style/index-exclusive-offers.css */
.page-index-exclusive-offers {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0; /* Light gray for general text on dark background */
    background-color: #001a33; /* Darker blue for overall page background */
}

.page-index-exclusive-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-exclusive-offers__hero-section {
    background: linear-gradient(135deg, #003366, #004d99); /* Primary color gradient */
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-index-exclusive-offers__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Auxiliary color for title emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-index-exclusive-offers__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.page-index-exclusive-offers__section {
    padding: 60px 0;
}

.page-index-exclusive-offers__section--why-nh88 {
    background-color: #002244; /* Slightly lighter dark blue for section */
}

.page-index-exclusive-offers__section--offers-list {
    background-color: #001a33;
}

.page-index-exclusive-offers__section--how-to-claim {
    background-color: #002244;
}

.page-index-exclusive-offers__section--terms {
    background-color: #001a33;
}

.page-index-exclusive-offers__section--tips {
    background-color: #002244;
}

.page-index-exclusive-offers__section--why-choose {
    background-color: #001a33;
}

.page-index-exclusive-offers__cta-section {
    background: linear-gradient(135deg, #003366, #FFCC00); /* Gradient for CTA */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-index-exclusive-offers__section-title {
    font-size: 2.8em;
    color: #FFCC00; /* Auxiliary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-exclusive-offers__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 60px;
    color: #c0c0c0;
}

.page-index-exclusive-offers__sub-title {
    font-size: 1.8em;
    color: #FFCC00; /* Auxiliary color for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-exclusive-offers__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-index-exclusive-offers__text-content a {
    color: #FFCC00;
    text-decoration: none;
}

.page-index-exclusive-offers__text-content a:hover {
    text-decoration: underline;
}

.page-index-exclusive-offers__list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-index-exclusive-offers__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
}

.page-index-exclusive-offers__list--bullet li::before {
    content: '•';
    color: #FFCC00;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: 0;
}

.page-index-exclusive-offers__list--numbered {
    counter-reset: my-counter;
}

.page-index-exclusive-offers__list--numbered li {
    counter-increment: my-counter;
}

.page-index-exclusive-offers__list--numbered li::before {
    content: counter(my-counter) '.';
    color: #FFCC00;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1em;
}

.page-index-exclusive-offers__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

.page-index-exclusive-offers__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-index-exclusive-offers__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-index-exclusive-offers__btn--secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-index-exclusive-offers__btn--secondary:hover {
    background-color: #004d99;
    transform: translateY(-3px);
}

.page-index-exclusive-offers__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
}

.page-index-exclusive-offers__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-index-exclusive-offers__content-grid > div {
    flex: 1;
}

.page-index-exclusive-offers__image-wrapper {
    text-align: center;
}

.page-index-exclusive-offers__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-offers__image--small {
    max-width: 70%;
    margin: 20px auto;
    display: block;
}

.page-index-exclusive-offers__image--full-width {
    width: 100%;
    margin-top: 40px;
}

.page-index-exclusive-offers__offer-category {
    background-color: #002244;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-offers__category-title {
    font-size: 2.2em;
    color: #FFCC00;
    margin-bottom: 20px;
    border-bottom: 2px solid #004d99;
    padding-bottom: 10px;
    font-weight: bold;
}

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

.page-index-exclusive-offers__step-item {
    background-color: #002244;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-top: 60px;
}

.page-index-exclusive-offers__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFCC00;
    color: #003366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    border: 3px solid #003366;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-offers__step-title {
    font-size: 1.6em;
    color: #FFCC00;
    margin-bottom: 15px;
}

.page-index-exclusive-offers__step-item p {
    font-size: 1.0em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-index-exclusive-offers__step-item a {
    color: #FFCC00;
    text-decoration: none;
}

.page-index-exclusive-offers__step-item a:hover {
    text-decoration: underline;
}

.page-index-exclusive-offers__terms-content {
    background-color: #002244;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-offers__terms-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #e0e0e0;
}

.page-index-exclusive-offers__terms-content h3 {
    color: #FFCC00;
    font-size: 1.6em;
    margin-top: 25px;
    margin-bottom: 10px;
}

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

.page-index-exclusive-offers__feature-item {
    background-color: #002244;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-offers__feature-title {
    font-size: 1.8em;
    color: #FFCC00;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-exclusive-offers__feature-item p {
    font-size: 1.0em;
    color: #c0c0c0;
}

.page-index-exclusive-offers__cta-title {
    font-size: 3em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-exclusive-offers__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-exclusive-offers__hero-title {
        font-size: 2.8em;
    }
    .page-index-exclusive-offers__section-title {
        font-size: 2.2em;
    }
    .page-index-exclusive-offers__sub-title {
        font-size: 1.5em;
    }
    .page-index-exclusive-offers__content-grid {
        flex-direction: column;
    }
    .page-index-exclusive-offers__image--small {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-index-exclusive-offers__hero-section,
    .page-index-exclusive-offers__cta-section {
        padding: 60px 0;
    }
    .page-index-exclusive-offers__hero-title {
        font-size: 2.2em;
    }
    .page-index-exclusive-offers__hero-description {
        font-size: 1.1em;
    }
    .page-index-exclusive-offers__section {
        padding: 40px 0;
    }
    .page-index-exclusive-offers__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index-exclusive-offers__section-intro {
        font-size: 1.0em;
        margin-bottom: 40px;
    }
    .page-index-exclusive-offers__category-title {
        font-size: 1.8em;
    }
    .page-index-exclusive-offers__step-title {
        font-size: 1.4em;
    }
    .page-index-exclusive-offers__feature-title {
        font-size: 1.5em;
    }
    .page-index-exclusive-offers__cta-title {
        font-size: 2.4em;
    }
    .page-index-exclusive-offers__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-exclusive-offers__btn--small {
        padding: 8px 15px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .page-index-exclusive-offers__hero-title {
        font-size: 1.8em;
    }
    .page-index-exclusive-offers__section-title {
        font-size: 1.6em;
    }
    .page-index-exclusive-offers__cta-title {
        font-size: 2em;
    }
    .page-index-exclusive-offers__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-index-exclusive-offers__steps-grid,
    .page-index-exclusive-offers__features-grid {
        grid-template-columns: 1fr;
    }
}