.hero-section {
  background-color: #fff; /* fondo blanco */
  color: #000; /* texto negro */
  padding: 100px 0;
}

#home h2 {
  color: #000000; /* blanco */
}


.hero-section .hero-text h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-section .hero-text p {
  font-size: 1.2rem;
}

.hero-section .hero-image img {
  max-width: 900px; /* ajusta el tamaño según necesites */
  height: auto;
  margin-left: 900px;
  margin-top: -2px;
  transform: rotate(10deg);
}

@media (max-width: 768px) {
  .hero-section .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-section .hero-image {
    margin-top: 20px;
  }
}
