* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* max-width: 1200px; */
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  height: 100vh;
}

.container {
  max-width: 1200px; /* Maximum width of your content */
  margin: 0 auto; /* Centers the content horizontally */
  padding: 0 0px; /* Adds padding for smaller screens */
  background-color: #fff;
}



.hero {
  display: flex;
  justify-content: space-between;
  padding: 100px;
  background-color: #fff;
}

.hero-content {
  max-width: 50%;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background-color: #5f499c;
  color: white;
  padding: 12px 36px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
}

.btn-secondary {
  background-color: transparent;
  color: #5f499c;
  border: 2px solid #5f499c;
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
}

.hero-image img {
  max-width: 400px;
}

@media (max-width: 768px) {
  .btn-register {
    position: static;
    margin-top: 10px;
  }
  /* Hero Section styles */
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-image img {
    max-width: 300px;
    margin-top: 20px;
  }
}
