/* style/nh-ci-khc.css */
.page-nh-ci-khc {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-nh-ci-khc__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-nh-ci-khc__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Deep Ocean Blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-nh-ci-khc__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 800px;
    opacity: 0.2;
    z-index: 0;
}

.page-nh-ci-khc__hero .page-nh-ci-khc__container {
    position: relative;
    z-index: 1;
}

.page-nh-ci-khc__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Luxury Gold */
}

.page-nh-ci-khc__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-nh-ci-khc__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-nh-ci-khc__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-nh-ci-khc__section--dark {
    background-color: #003366; /* Deep Ocean Blue */
    color: #fff;
}

.page-nh-ci-khc__section--bg-image {
    background: url('[IMAGE:feature_bg]') no-repeat center center/cover;
    background-attachment: fixed;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-nh-ci-khc__section--conclusion {
    background: linear-gradient(90deg, #003366 0%, #001a33 100%);
    color: #fff;
    text-align: center;
}

.page-nh-ci-khc__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #003366;
    font-weight: bold;
}

.page-nh-ci-khc__section-title--light {
    color: #FFD700; /* Luxury Gold */
}

.page-nh-ci-khc__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-nh-ci-khc__text--light {
    color: #e0e0e0;
}

.page-nh-ci-khc__mt-40 {
    margin-top: 40px;
}

.page-nh-ci-khc__highlight {
    color: #FFD700; /* Luxury Gold */
}

.page-nh-ci-khc__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.page-nh-ci-khc__btn--primary {
    background-color: #FFD700; /* Luxury Gold */
    color: #003366; /* Deep Ocean Blue */
    border: 2px solid #FFD700;
}

.page-nh-ci-khc__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-nh-ci-khc__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Luxury Gold */
    border: 2px solid #FFD700;
}

.page-nh-ci-khc__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-nh-ci-khc__btn--cta {
    background-color: #DC143C; /* Striking Deep Red */
    color: #fff;
    border: 2px solid #DC143C;
    font-size: 1.2em;
    padding: 18px 35px;
}

.page-nh-ci-khc__btn--cta:hover {
    background-color: #c01132;
    border-color: #c01132;
    transform: translateY(-3px) scale(1.02);
}

.page-nh-ci-khc__btn--cta-alt {
    background-color: #FFD700; /* Luxury Gold */
    color: #003366; /* Deep Ocean Blue */
    border: 2px solid #FFD700;
    font-size: 1.2em;
    padding: 18px 35px;
    margin-top: 30px;
}

.page-nh-ci-khc__btn--cta-alt:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px) scale(1.02);
}

.page-nh-ci-khc__btn--lg {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-nh-ci-khc__grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.page-nh-ci-khc__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-nh-ci-khc__card {
    background-color: #f0f8ff; /* Light blue tint */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-nh-ci-khc__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.page-nh-ci-khc__card-title {
    font-size: 1.5em;
    color: #003366; /* Deep Ocean Blue */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-nh-ci-khc__card-text {
    font-size: 1em;
    color: #555;
}

.page-nh-ci-khc__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-nh-ci-khc__feature-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 51, 102, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.page-nh-ci-khc__feature-item:hover {
    transform: translateY(-8px);
}

.page-nh-ci-khc__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-nh-ci-khc__feature-title {
    font-size: 1.6em;
    color: #FFD700; /* Luxury Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-nh-ci-khc__feature-text {
    font-size: 1em;
    color: #e0e0e0;
}

.page-nh-ci-khc__cta-banner {
    background-color: #DC143C; /* Striking Deep Red */
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.page-nh-ci-khc__cta-title {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-nh-ci-khc__comparison-table {
    margin-top: 40px;
    overflow-x: auto;
}

.page-nh-ci-khc__comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.page-nh-ci-khc__comparison-table th, .page-nh-ci-khc__comparison-table td {
    padding: 15px 20px;
    border: 1px solid #eee;
    text-align: left;
    font-size: 1em;
}

.page-nh-ci-khc__comparison-table th {
    background-color: #003366; /* Deep Ocean Blue */
    color: #FFD700; /* Luxury Gold */
    font-weight: bold;
    white-space: nowrap;
}

.page-nh-ci-khc__comparison-table td {
    color: #333;
}

.page-nh-ci-khc__comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.page-nh-ci-khc__image--full-width {
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-nh-ci-khc__checklist {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-nh-ci-khc__checklist-item {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-nh-ci-khc__checklist-item::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #FFD700; /* Luxury Gold */
    font-weight: bold;
    font-size: 1.3em;
}

.page-nh-ci-khc__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    counter-reset: step-counter;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-nh-ci-khc__steps-item {
    position: relative;
    padding: 15px 0 15px 50px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
    background-color: #f0f8ff;
    border-left: 5px solid #003366;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-nh-ci-khc__steps-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700; /* Luxury Gold */
    color: #003366; /* Deep Ocean Blue */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-nh-ci-khc__action-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-nh-ci-khc__hero-title {
        font-size: 2.5em;
    }
    .page-nh-ci-khc__section-title {
        font-size: 2em;
    }
    .page-nh-ci-khc__hero-image {
        width: 80%;
        max-width: 600px;
    }
    .page-nh-ci-khc__grid--3-cols {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-nh-ci-khc__hero {
        padding: 60px 0;
    }
    .page-nh-ci-khc__hero-title {
        font-size: 2em;
    }
    .page-nh-ci-khc__hero-description {
        font-size: 1em;
    }
    .page-nh-ci-khc__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-nh-ci-khc__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-nh-ci-khc__section {
        padding: 40px 0;
    }
    .page-nh-ci-khc__section-title {
        font-size: 1.8em;
    }
    .page-nh-ci-khc__text {
        font-size: 0.95em;
    }
    .page-nh-ci-khc__grid--3-cols {
        grid-template-columns: 1fr;
    }
    .page-nh-ci-khc__feature-list {
        grid-template-columns: 1fr;
    }
    .page-nh-ci-khc__hero-image {
        width: 100%;
        position: relative;
        margin-top: 30px;
        opacity: 0.1;
    }
    .page-nh-ci-khc__cta-title {
        font-size: 1.6em;
    }
    .page-nh-ci-khc__btn--lg {
        width: 100%;
        padding: 15px 25px;
        font-size: 1.1em;
    }
    .page-nh-ci-khc__action-group {
        flex-direction: column;
    }
    .page-nh-ci-khc__checklist-item, .page-nh-ci-khc__steps-item {
        font-size: 1em;
        padding-left: 40px;
    }
    .page-nh-ci-khc__steps-item::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-nh-ci-khc__hero-title {
        font-size: 1.8em;
    }
    .page-nh-ci-khc__section-title {
        font-size: 1.5em;
    }
    .page-nh-ci-khc__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-nh-ci-khc__cta-title {
        font-size: 1.4em;
    }
    .page-nh-ci-khc__card-title {
        font-size: 1.3em;
    }
    .page-nh-ci-khc__feature-title {
        font-size: 1.4em;
    }
}