/* style/ng-k.css */
.page-ng-k {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0A192F; /* Deep Navy Blue */
  line-height: 1.6;
}

.page-ng-k a {
  text-decoration: none;
  color: #FFD700; /* Gold for links */
}

.page-ng-k a:hover {
  text-decoration: underline;
  color: #FFEA00; /* Slightly brighter gold on hover */
}

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

/* Hero Section */
.page-ng-k__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #2A3B5C 100%); /* Gradient background */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-ng-k__hero-content {
  z-index: 10;
  max-width: 800px;
}

.page-ng-k__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-ng-k__hero-subtitle {
  font-size: 1.4em;
  color: #B0C4DE; /* Light steel blue for subtitle */
  margin-bottom: 40px;
  font-weight: 300;
}

.page-ng-k__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Deep Navy Blue text */
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-ng-k__hero-btn:hover {
  background-color: #FFEA00; /* Brighter gold on hover */
  transform: translateY(-3px);
  text-decoration: none;
}

.page-ng-k__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
}

.page-ng-k__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* General Section Styling */
.page-ng-k__section {
  padding: 80px 0;
  text-align: center;
}

.page-ng-k__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-ng-k__section-description {
  font-size: 1.1em;
  color: #B0C4DE;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Why Register Section */
.page-ng-k__why-register {
  background-color: #0A192F;
}

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

.page-ng-k__feature-item {
  background-color: #1A2B4C; /* Slightly lighter navy for feature cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ng-k__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-ng-k__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-ng-k__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-ng-k__feature-text {
  font-size: 1em;
  color: #E0E0E0;
}

/* Guide Section */
.page-ng-k__guide {
  background-color: #0F2038;
}

.page-ng-k__step-by-step {
  margin-top: 60px;
}

.page-ng-k__step-item {
  background-color: #1A2B4C;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-ng-k__step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  font-weight: 800;
  z-index: 5;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-ng-k__step-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
  margin-left: 80px; /* Offset for step number */
  font-weight: 600;
}

.page-ng-k__step-text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-ng-k__info-list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 25px;
  color: #E0E0E0;
}

.page-ng-k__info-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-ng-k__info-list li strong {
  color: #FFD700;
}

.page-ng-k__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  border: 2px solid #FFD700; /* Gold border for images */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-ng-k__step-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1em;
  font-weight: 600;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-ng-k__step-btn:hover {
  background-color: #FFEA00;
  transform: translateY(-2px);
  text-decoration: none;
}

.page-ng-k__step-btn--final {
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 50px;
}

.page-ng-k__step-btn--final:hover {
  background-color: #FFEA00;
  transform: translateY(-3px);
}

/* Important Notes Section */
.page-ng-k__important-notes {
  background-color: #0A192F;
}

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

.page-ng-k__notes-list li {
  background-color: #1A2B4C;
  padding: 20px 30px;
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-ng-k__notes-list li strong {
  color: #FFD700;
  display: block;
  margin-bottom: 5px;
  font-size: 1.2em;
}

/* FAQ Section */
.page-ng-k__faq {
  background-color: #0F2038;
}

.page-ng-k__faq-items {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-ng-k__faq-item {
  background-color: #1A2B4C;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-ng-k__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-ng-k__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-ng-k__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-ng-k__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-ng-k__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding-top: 15px;
}

/* Call to Action Section */
.page-ng-k__cta {
  background: linear-gradient(90deg, #0A192F 0%, #FFD700 100%); /* Gold gradient for CTA */
  padding: 60px 0;
}

.page-ng-k__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-ng-k__cta-title {
  font-size: 2.8em;
  color: #0A192F; /* Deep Navy Blue for CTA title */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-ng-k__cta-description {
  font-size: 1.2em;
  color: #2C3E50; /* Darker text for contrast on gold */
  max-width: 700px;
  margin-bottom: 40px;
}

.page-ng-k__cta-btn {
  display: inline-block;
  background-color: #0A192F; /* Deep Navy Blue button */
  color: #FFD700; /* Gold text */
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-ng-k__cta-btn:hover {
  background-color: #1A2B4C; /* Slightly lighter navy on hover */
  transform: translateY(-5px);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-ng-k__hero-title {
    font-size: 2.5em;
  }
  .page-ng-k__hero-subtitle {
    font-size: 1.2em;
  }
  .page-ng-k__section-title {
    font-size: 2em;
  }
  .page-ng-k__feature-title {
    font-size: 1.5em;
  }
  .page-ng-k__step-title {
    font-size: 1.8em;
    margin-left: 0;
    margin-top: 70px;
    text-align: center;
  }
  .page-ng-k__step-number {
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
  }
  .page-ng-k__cta-title {
    font-size: 2.2em;
  }
  .page-ng-k__cta-btn {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-ng-k__hero {
    padding: 60px 15px;
  }
  .page-ng-k__hero-title {
    font-size: 2em;
  }
  .page-ng-k__hero-subtitle {
    font-size: 1em;
  }
  .page-ng-k__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-ng-k__section {
    padding: 60px 0;
  }
  .page-ng-k__section-title {
    font-size: 1.8em;
  }
  .page-ng-k__section-description {
    font-size: 0.95em;
  }
  .page-ng-k__feature-item {
    padding: 25px;
  }
  .page-ng-k__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-ng-k__feature-title {
    font-size: 1.3em;
  }
  .page-ng-k__step-item {
    padding: 30px;
  }
  .page-ng-k__step-title {
    font-size: 1.6em;
  }
  .page-ng-k__step-text, .page-ng-k__info-list li, .page-ng-k__notes-list li, .page-ng-k__faq-answer {
    font-size: 0.95em;
  }
  .page-ng-k__faq-question {
    font-size: 1.1em;
  }
  .page-ng-k__cta-title {
    font-size: 1.8em;
  }
  .page-ng-k__cta-btn {
    padding: 15px 35px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-ng-k__hero-title {
    font-size: 1.8em;
  }
  .page-ng-k__hero-subtitle {
    font-size: 0.9em;
  }
  .page-ng-k__hero-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-ng-k__section-title {
    font-size: 1.6em;
  }
  .page-ng-k__step-title {
    font-size: 1.4em;
  }
  .page-ng-k__step-number {
    width: 50px;
    height: 50px;
    font-size: 2em;
  }
  .page-ng-k__cta-title {
    font-size: 1.6em;
  }
  .page-ng-k__cta-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}