.hero {
  background-color: #4b3cef;
  color: white;
  padding: 80px 40px;
  text-align: left;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.go-button {
  background-color: white;
  color: #4b3cef;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.go-button:hover {
  background-color: #e0dbff;
  color: #372cc5;
}

.hero h1 span {
  font-weight: bold;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 30px;
}

.go-button {
  background-color: white;
  color: #4b3cef;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.go-button:hover {
  background-color: #e0e0e0;
}

.stats {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat h2 {
  font-size: 32px;
  margin-bottom: 5px;
}

.stat p {
  font-size: 16px;
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 20px;
    text-align: left;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .go-button {
    padding: 12px 20px;
    font-size: 14px;
  }

  .stats {
    flex-direction: column;       /* force vertical layout */
    gap: 30px;
    margin-top: 40px;
    align-items: flex-start;      /* align to the left like desktop */
  }

  .stat {
    width: 100%;                  /* make each stat block full width if needed */
  }

  .stat h2 {
    font-size: 28px;
  }

  .stat p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .go-button {
    padding: 10px 18px;
    font-size: 13px;
  }

  .stat h2 {
    font-size: 24px;
  }

  .stat p {
    font-size: 14px;
  }

  .stats {
    align-items: flex-start;
  }

  .stat {
    width: 100%;
  }
}
