.hero {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
  gap: 2rem;
  background-color: #f9f9f9;
}
.hero .info {
  width: 50%;
}
.hero .info h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero .info p {
  font-size: 1rem;
  color: var(--text);
  width: 70%;
}
.hero .image-container {
  width: 50%;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero .image-container {
    width: 100%;
  }
  .hero .info {
    width: 100%;
  }
  .hero .info p {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .hero{
    min-height: 100vh;
  }
  .hero .info h1 {
    font-size: 2rem;
  }
  .hero .info p {
    font-size: 0.85rem;
  }
}
