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

.page-index-how-to-start__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-how-to-start__hero-banner {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-how-to-start__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-how-to-start__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-how-to-start__hero-image {
  max-width: 80%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-how-to-start__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-index-how-to-start__section:nth-of-type(even) {
  background-color: #f0f8ff;
}

.page-index-how-to-start__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-how-to-start__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-how-to-start__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-how-to-start__btn {
  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;
  margin: 10px;
}

.page-index-how-to-start__btn--primary {
  background-color: #FFD700;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-how-to-start__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-how-to-start__btn--secondary {
  background-color: #007BFF;
  color: #fff;
  border: 2px solid #007BFF;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.page-index-how-to-start__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.page-index-how-to-start__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-how-to-start__step-item {
  background-color: #fefefe;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-how-to-start__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-how-to-start__step-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-index-how-to-start__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-index-how-to-start__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  position: relative;
  padding-left: 30px;
}

.page-index-how-to-start__list li::before {
  content: '▶';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 0.8em;
  top: 3px;
}

.page-index-how-to-start__list--bullet li::before {
  content: '•';
  color: #007BFF;
  font-size: 1.5em;
  top: -2px;
}

.page-index-how-to-start__list--checked li::before {
  content: '✓';
  color: #00C853; /* A vibrant green for checkmarks */
  font-weight: bold;
  font-size: 1.2em;
  top: 0px;
}

.page-index-how-to-start__list--benefits li::before {
  content: '★';
  color: #FFD700;
  font-size: 1.2em;
  top: 0px;
}

.page-index-how-to-start__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-how-to-start__btn-group {
  text-align: center;
  margin-top: 30px;
}

.page-index-how-to-start__faq-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-index-how-to-start__faq-question {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-index-how-to-start__faq-answer {
  font-size: 1.05em;
  color: #555;
}

.page-index-how-to-start__call-to-action {
  background: linear-gradient(45deg, #007BFF, #FFD700);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.page-index-how-to-start__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-index-how-to-start__cta-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-index-how-to-start__cta-title, .page-index-how-to-start__cta-subtitle {
    color: #fff; /* Ensure text is visible on gradient */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-how-to-start__hero-title {
    font-size: 2.5em;
  }

  .page-index-how-to-start__hero-subtitle {
    font-size: 1.1em;
  }

  .page-index-how-to-start__section-title {
    font-size: 2em;
  }

  .page-index-how-to-start__text-content,
  .page-index-how-to-start__list li,
  .page-index-how-to-start__faq-answer {
    font-size: 1em;
  }

  .page-index-how-to-start__step-title {
    font-size: 1.5em;
  }

  .page-index-how-to-start__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

  .page-index-how-to-start__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-index-how-to-start__cta-title {
    font-size: 2.2em;
  }

  .page-index-how-to-start__cta-subtitle {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-how-to-start__hero-title {
    font-size: 2em;
  }

  .page-index-how-to-start__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-how-to-start__section-title {
    font-size: 1.8em;
  }

  .page-index-how-to-start__step-title {
    font-size: 1.3em;
  }

  .page-index-how-to-start__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .page-index-how-to-start__btn-group .page-index-how-to-start__btn {
    width: auto;
    display: inline-block;
  }

  .page-index-how-to-start__cta-title {
    font-size: 1.8em;
  }

  .page-index-how-to-start__cta-subtitle {
    font-size: 1em;
  }
}