/* style/blog-nw88-registration-process.css */

/* Base styles for the page */
.page-blog-nw88-registration-process {
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: #1a1a2e; /* Inherited from shared, explicitly set for clarity */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-nw88-registration-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-nw88-registration-process__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-blog-nw88-registration-process__text-block {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-blog-nw88-registration-process__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  background-color: #017439; /* Primary color as a base */
  overflow: hidden;
}

.page-blog-nw88-registration-process__hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
}

.page-blog-nw88-registration-process__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for better text contrast */
}

.page-blog-nw88-registration-process__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.page-blog-nw88-registration-process__main-title {
  color: #FFFF00; /* Use custom color for main title */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  /* H1 font-size: Use clamp for responsive sizing, avoid fixed large values */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-nw88-registration-process__hero-description {
  color: #FFFFFF;
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-blog-nw88-registration-process__btn-primary,
.page-blog-nw88-registration-process__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-nw88-registration-process__btn-primary {
  background-color: #C30808; /* Custom Register button color */
  color: #FFFF00; /* Custom Register button text color */
  border: 2px solid #C30808;
}

.page-blog-nw88-registration-process__btn-primary:hover {
  background-color: #e02020;
  border-color: #e02020;
}

.page-blog-nw88-registration-process__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Ensure good contrast on dark background */
  border: 2px solid #FFFF00;
}

.page-blog-nw88-registration-process__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808;
}

/* Introduction Section */
.page-blog-nw88-registration-process__introduction-section {
  padding: 60px 0;
  background-color: #1a1a2e;
}

/* Steps Section */
.page-blog-nw88-registration-process__steps-section {
  padding: 60px 0;
  background-color: #0d0d1a; /* Slightly darker background */
}

.page-blog-nw88-registration-process__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-nw88-registration-process__step-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark bg */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-nw88-registration-process__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-nw88-registration-process__step-title {
  font-size: 1.5em;
  color: #FFFF00; /* Highlight step titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-nw88-registration-process__step-description {
  color: #f0f0f0;
  font-size: 1em;
}

.page-blog-nw88-registration-process__cta-container {
  text-align: center;
  margin-top: 50px;
}

/* Important Notes Section */
.page-blog-nw88-registration-process__important-notes-section {
  padding: 60px 0;
  background-color: #1a1a2e;
}

.page-blog-nw88-registration-process__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-nw88-registration-process__list-item {
  background-color: rgba(1, 116, 57, 0.15); /* Primary color with transparency */
  border-left: 5px solid #017439;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-nw88-registration-process__list-item-title {
  font-size: 1.3em;
  color: #FFFF00;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-nw88-registration-process__list-item-description {
  color: #f0f0f0;
  font-size: 1em;
}

/* Promotions Section */
.page-blog-nw88-registration-process__promotions-section {
  padding: 60px 0;
  background-color: #0d0d1a;
}

.page-blog-nw88-registration-process__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-nw88-registration-process__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-blog-nw88-registration-process__promo-image {
  width: 100%;
  height: 225px; /* Fixed height for consistent card appearance */
  object-fit: cover;
}

.page-blog-nw88-registration-process__promo-title {
  font-size: 1.4em;
  color: #FFFF00;
  padding: 20px 20px 10px 20px;
  font-weight: 600;
}

.page-blog-nw88-registration-process__promo-description {
  color: #f0f0f0;
  font-size: 1em;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

/* Benefits Section */
.page-blog-nw88-registration-process__benefits-section {
  padding: 60px 0;
  background-color: #1a1a2e;
}

.page-blog-nw88-registration-process__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-blog-nw88-registration-process__benefit-card {
  background-color: rgba(1, 116, 57, 0.2); /* Primary color with transparency */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #017439;
}

.page-blog-nw88-registration-process__benefit-title {
  font-size: 1.4em;
  color: #FFFF00;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-nw88-registration-process__benefit-description {
  color: #f0f0f0;
  font-size: 1em;
}

/* FAQ Section */
.page-blog-nw88-registration-process__faq-section {
  padding: 60px 0;
  background-color: #0d0d1a;
}

.page-blog-nw88-registration-process__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-nw88-registration-process__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-nw88-registration-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  background-color: rgba(1, 116, 57, 0.3); /* Primary color with transparency */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
}

.page-blog-nw88-registration-process__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-nw88-registration-process__faq-question .page-blog-nw88-registration-process__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #FFFF00;
}

.page-blog-nw88-registration-process__faq-answer {
  padding: 0 20px 20px 20px;
  color: #f0f0f0;
  font-size: 1em;
}

/* Conclusion Section */
.page-blog-nw88-registration-process__conclusion-section {
  padding: 60px 0;
  background-color: #1a1a2e;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-nw88-registration-process__section-title {
    font-size: 2em;
  }
  .page-blog-nw88-registration-process__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
}

@media (max-width: 768px) {
  .page-blog-nw88-registration-process {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-nw88-registration-process__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }

  .page-blog-nw88-registration-process__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-nw88-registration-process__hero-description {
    font-size: 1em;
  }

  .page-blog-nw88-registration-process__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-nw88-registration-process__steps-grid,
  .page-blog-nw88-registration-process__promotions-grid,
  .page-blog-nw88-registration-process__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-nw88-registration-process__container,
  .page-blog-nw88-registration-process__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile image responsiveness */
  .page-blog-nw88-registration-process img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/videos/buttons must have these */
  .page-blog-nw88-registration-process__hero-section,
  .page-blog-nw88-registration-process__introduction-section,
  .page-blog-nw88-registration-process__steps-section,
  .page-blog-nw88-registration-process__important-notes-section,
  .page-blog-nw88-registration-process__promotions-section,
  .page-blog-nw88-registration-process__benefits-section,
  .page-blog-nw88-registration-process__faq-section,
  .page-blog-nw88-registration-process__conclusion-section,
  .page-blog-nw88-registration-process__step-card,
  .page-blog-nw88-registration-process__promo-card,
  .page-blog-nw88-registration-process__benefit-card,
  .page-blog-nw88-registration-process__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Buttons responsiveness */
  .page-blog-nw88-registration-process__btn-primary,
  .page-blog-nw88-registration-process__btn-secondary,
  .page-blog-nw88-registration-process a[class*="button"],
  .page-blog-nw88-registration-process a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px; /* Add some spacing if stacked */
  }

  .page-blog-nw88-registration-process__cta-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .page-blog-nw88-registration-process__hero-section {
    padding-top: 10px !important; /* Body handles --header-offset, this is for visual padding */
  }
}