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

.page-index-registration-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-registration-process__hero {
  position: relative;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-index-registration-process__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.page-index-registration-process__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-index-registration-process__hero .page-index-registration-process__container {
  position: relative;
  z-index: 1;
}

.page-index-registration-process__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.page-index-registration-process__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-index-registration-process__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-index-registration-process__btn--primary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-index-registration-process__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #fff;
}

.page-index-registration-process__btn--secondary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-index-registration-process__btn--secondary:hover {
  background-color: #007bff;
  color: #fff;
}

.page-index-registration-process__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-registration-process__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-index-registration-process__section-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: 700;
}

.page-index-registration-process__section-description {
  font-size: 1.1em;
  color: #555;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-registration-process__feature-list,
.page-index-registration-process__tip-list,
.page-index-registration-process__security-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-index-registration-process__feature-list li,
.page-index-registration-process__tip-list li,
.page-index-registration-process__security-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  font-size: 1.05em;
  color: #333;
}

.page-index-registration-process__icon {
  margin-right: 15px;
  font-size: 1.4em;
  line-height: 1;
}

.page-index-registration-process__icon--check {
  color: #28a745;
}

.page-index-registration-process__icon--alert {
  color: #ffc107;
}

.page-index-registration-process__icon--lock {
  color: #007bff;
}

.page-index-registration-process__steps {
  background-color: #fff;
}

.page-index-registration-process__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-registration-process__step-item {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-registration-process__step-number {
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.page-index-registration-process__step-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.page-index-registration-process__step-text {
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-registration-process__step-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-index-registration-process__cta-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.page-index-registration-process__cta-bottom p {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 25px;
}

.page-index-registration-process__tips-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-index-registration-process__faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-index-registration-process__faq-question {
  font-size: 1.2em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-index-registration-process__faq-answer {
  color: #555;
  font-size: 1em;
}

.page-index-registration-process__cta-final {
  background: linear-gradient(135deg, #007bff 0%, #ffc107 100%);
  color: #fff;
  padding: 80px 0;
}

.page-index-registration-process__cta-final .page-index-registration-process__section-title {
  color: #fff;
}

.page-index-registration-process__cta-final .page-index-registration-process__section-description {
  color: rgba(255, 255, 255, 0.9);
}

.page-index-registration-process__btn--large {
  padding: 15px 40px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-registration-process__hero-title {
    font-size: 2.2em;
  }

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

  .page-index-registration-process__section-title {
    font-size: 1.8em;
  }

  .page-index-registration-process__feature-list li,
  .page-index-registration-process__tip-list li,
  .page-index-registration-process__security-list li {
    padding: 15px;
    font-size: 0.95em;
  }

  .page-index-registration-process__step-item {
    padding: 20px;
  }

  .page-index-registration-process__step-title {
    font-size: 1.3em;
  }

  .page-index-registration-process__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-registration-process__hero {
    padding: 60px 0;
  }

  .page-index-registration-process__hero-title {
    font-size: 1.8em;
  }

  .page-index-registration-process__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-index-registration-process__section {
    padding: 40px 0;
  }

  .page-index-registration-process__section-title {
    font-size: 1.6em;
  }

  .page-index-registration-process__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }

  .page-index-registration-process__btn--large {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}