/* style/ng-k.css */
.page-ng-k {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-ng-k__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-ng-k__hero-section {
    background: linear-gradient(135deg, #003366, #1a4a7f);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-ng-k__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-ng-k__hero-section .page-ng-k__container {
    position: relative;
    z-index: 2;
}

.page-ng-k__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-ng-k__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-ng-k__hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.page-ng-k__hero-image:hover {
    transform: translateY(-5px);
}

/* General Section Styling */
.page-ng-k__benefits-section, .page-ng-k__guide-section, .page-ng-k__membership-benefits, .page-ng-k__faq-section, .page-ng-k__final-cta {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-ng-k__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-ng-k__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-ng-k__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-ng-k__section-subtitle {
    font-size: 1.8em;
    color: #003366;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

/* Buttons */
.page-ng-k__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-ng-k__btn--primary {
    background-color: #DC143C; /* Deep Red for CTA */
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.page-ng-k__btn--primary:hover {
    background-color: #c01034;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

.page-ng-k__btn--secondary {
    background-color: #FFD700;
    color: #003366;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-ng-k__btn--secondary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-ng-k__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Features Grid */
.page-ng-k__features-grid, .page-ng-k__steps-grid, .page-ng-k__privileges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-ng-k__feature-item, .page-ng-k__step-item, .page-ng-k__privilege-item {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #003366;
}

.page-ng-k__feature-item:hover, .page-ng-k__step-item:hover, .page-ng-k__privilege-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-ng-k__feature-title, .page-ng-k__step-title, .page-ng-k__privilege-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-ng-k__feature-text, .page-ng-k__step-text, .page-ng-k__privilege-text {
    color: #555;
    font-size: 1em;
}

.page-ng-k__feature-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
}

/* Step-by-Step Guide Specifics */
.page-ng-k__step-item {
    position: relative;
    padding-top: 60px;
}

.page-ng-k__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #003366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #003366;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-ng-k__step-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-ng-k__tip-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-ng-k__tip-list li {
    background-color: #e9f5ff;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
}

.page-ng-k__icon--check {
    color: #003366;
    margin-right: 15px;
    font-size: 1.3em;
}
.page-ng-k__icon--check::before { content: '✔'; }

/* FAQ Section */
.page-ng-k__faq-list {
    margin-top: 40px;
}

.page-ng-k__faq-item {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-ng-k__faq-question {
    font-size: 1.3em;
    color: #003366;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e9f5ff;
    transition: background-color 0.3s ease;
}

.page-ng-k__faq-question:hover {
    background-color: #dbe9f5;
}

.page-ng-k__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-ng-k__faq-item.active .page-ng-k__faq-question::after {
    transform: rotate(45deg);
}

.page-ng-k__faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #ffffff;
}

.page-ng-k__faq-item.active .page-ng-k__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding: 20px;
}

.page-ng-k__faq-answer p {
    color: #555;
    margin: 0;
    font-size: 1em;
}

/* Final CTA */
.page-ng-k__final-cta {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.page-ng-k__final-cta .page-ng-k__section-title {
    color: #FFD700;
}

.page-ng-k__final-cta .page-ng-k__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-ng-k__contact-text {
    margin-top: 30px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-ng-k__contact-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-ng-k__contact-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-ng-k__hero-title {
        font-size: 2.8em;
    }
    .page-ng-k__hero-subtitle {
        font-size: 1.2em;
    }
    .page-ng-k__section-title {
        font-size: 2em;
    }
    .page-ng-k__section-description {
        font-size: 1em;
    }
    .page-ng-k__features-grid, .page-ng-k__steps-grid, .page-ng-k__privileges-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-ng-k__hero-title {
        font-size: 2.2em;
    }
    .page-ng-k__hero-subtitle {
        font-size: 1em;
    }
    .page-ng-k__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-ng-k__section-title {
        font-size: 1.8em;
    }
    .page-ng-k__section-subtitle {
        font-size: 1.5em;
    }
    .page-ng-k__feature-item, .page-ng-k__step-item, .page-ng-k__privilege-item {
        padding: 25px;
    }
    .page-ng-k__tip-list li {
        font-size: 0.95em;
    }
}

@media (max-width: 576px) {
    .page-ng-k__hero-title {
        font-size: 1.8em;
    }
    .page-ng-k__hero-subtitle {
        font-size: 0.9em;
    }
    .page-ng-k__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-ng-k__section-title {
        font-size: 1.5em;
    }
    .page-ng-k__section-description {
        font-size: 0.9em;
    }
    .page-ng-k__features-grid, .page-ng-k__steps-grid, .page-ng-k__privileges-grid {
        grid-template-columns: 1fr;
    }
    .page-ng-k__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-ng-k__faq-item.active .page-ng-k__faq-answer {
        padding: 15px;
    }
}