/* style/register-process-guide.css */
/* Body background color is #08160F (dark), so text should be light. */

.page-register-process-guide {
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--background-color); /* #08160F */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-register-process-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-register-process-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is decorative top padding */
  text-align: center;
  overflow: hidden;
}

.page-register-process-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-register-process-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-register-process-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Pull content up slightly over the image for visual flow */
  background: var(--card-bg); /* #11271B */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color); /* #2E7A4E */
}

.page-register-process-guide__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-register-process-guide__description {
  font-size: 1.1em;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 30px;
}

.page-register-process-guide__btn-primary,
.page-register-process-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-register-process-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-register-process-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-register-process-guide__btn-secondary {
  background: transparent;
  color: var(--text-main); /* #F2FFF6 */
  border: 2px solid var(--border-color); /* #2E7A4E */
  margin-left: 20px;
}

.page-register-process-guide__btn-secondary:hover {
  background: var(--border-color); /* #2E7A4E */
  color: #ffffff;
}

.page-register-process-guide__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: var(--text-main); /* #F2FFF6 */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-register-process-guide__text-block {
  font-size: 1.05em;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 20px;
  text-align: center;
}

/* Benefits Section */
.page-register-process-guide__benefits-section {
  padding: 80px 0;
  background-color: var(--card-bg); /* #11271B */
  border-bottom: 1px solid var(--divider); /* #1E3A2A */
}

.page-register-process-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-register-process-guide__benefit-card {
  background: var(--background-color); /* #08160F */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-register-process-guide__benefit-card:hover {
  transform: translateY(-5px);
}

.page-register-process-guide__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-register-process-guide__card-title {
  font-size: 1.4em;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register-process-guide__benefit-card p {
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 0.95em;
}

/* Guide Section */
.page-register-process-guide__guide-section {
  padding: 80px 0;
  background-color: var(--background-color); /* #08160F */
}

.page-register-process-guide__step-card {
  background: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-process-guide__step-title {
  font-size: 1.8em;
  color: var(--gold); /* #F2C14E */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-register-process-guide__step-card p {
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 1.05em;
  margin-bottom: 15px;
}

.page-register-process-guide__step-card ul {
  list-style-type: disc;
  margin-left: 20px;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 20px;
}

.page-register-process-guide__step-card ul li {
  margin-bottom: 8px;
}

.page-register-process-guide__step-card strong {
  color: var(--text-main); /* #F2FFF6 */
}

.page-register-process-guide__step-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  border: 1px solid var(--border-color); /* #2E7A4E */
}

/* Important Notes Section */
.page-register-process-guide__important-notes-section {
  padding: 80px 0;
  background-color: var(--deep-green); /* #0A4B2C */
}

.page-register-process-guide__important-notes-section ul {
  list-style-type: none;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-register-process-guide__important-notes-section ul li {
  background: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: var(--text-secondary); /* #A7D9B8 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-register-process-guide__important-notes-section ul li strong {
  color: var(--text-main); /* #F2FFF6 */
}

/* FAQ Section */
.page-register-process-guide__faq-section {
  padding: 80px 0;
  background-color: var(--background-color); /* #08160F */
}

.page-register-process-guide__faq-list {
  margin-top: 40px;
}

.page-register-process-guide__faq-item {
  background: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-register-process-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main); /* #F2FFF6 */
  cursor: pointer;
  background: var(--card-bg); /* #11271B */
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-register-process-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-register-process-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow); /* #57E38D */
  margin-left: 15px;
}

.page-register-process-guide__faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 1em;
  line-height: 1.8;
}

.page-register-process-guide__faq-answer p {
  margin-bottom: 10px;
}

.page-register-process-guide__link {
  color: var(--glow); /* #57E38D */
  text-decoration: underline;
}

.page-register-process-guide__link:hover {
  color: var(--gold); /* #F2C14E */
}

/* CTA Section */
.page-register-process-guide__cta-section {
  padding: 80px 0;
  background-color: var(--deep-green); /* #0A4B2C */
  text-align: center;
}

.page-register-process-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register-process-guide__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }

  .page-register-process-guide__main-title {
    font-size: clamp(1.8em, 4.5vw, 2.8em);
  }

  .page-register-process-guide__description {
    font-size: 1em;
  }

  .page-register-process-guide__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

  .page-register-process-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-register-process-guide__hero-content {
    margin-top: -60px;
    max-width: 95%;
    padding: 25px 15px;
  }

  .page-register-process-guide__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }

  .page-register-process-guide__description {
    font-size: 0.95em;
  }

  .page-register-process-guide__btn-primary,
  .page-register-process-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
    padding: 12px 20px;
  }

  .page-register-process-guide__btn-secondary {
    margin-top: 15px;
  }

  .page-register-process-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .page-register-process-guide__section-title {
    font-size: clamp(1.5em, 5vw, 2.2em);
    margin-bottom: 30px;
  }

  .page-register-process-guide__text-block {
    padding: 0 10px;
  }

  .page-register-process-guide__benefits-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .page-register-process-guide__benefit-card,
  .page-register-process-guide__step-card,
  .page-register-process-guide__important-notes-section ul li,
  .page-register-process-guide__faq-item {
    padding: 25px;
    margin: 0 15px 15px 15px;
    width: auto;
  }

  .page-register-process-guide__step-title {
    font-size: 1.5em;
  }

  .page-register-process-guide__faq-question {
    font-size: 1.1em;
  }

  /* Image and Video Responsive - Mandatory */
  .page-register-process-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-register-process-guide__section,
  .page-register-process-guide__card,
  .page-register-process-guide__container,
  .page-register-process-guide__hero-image-wrapper,
  .page-register-process-guide__benefits-section,
  .page-register-process-guide__guide-section,
  .page-register-process-guide__important-notes-section,
  .page-register-process-guide__faq-section,
  .page-register-process-guide__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-register-process-guide__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-register-process-guide__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}