/* Estilos generales HTML5 */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    /* Estilos del encabezado WEB HTML5*/
    header {
      background-color: #FFF;
      color: #000;
      padding: 20px;
      text-align: center;
    }

    header h1 {
      margin: 0;
      font-family: Monserrat, Arial, sans-serif;
      font-size: 36px;
      color: #ffc107;
    }

    /* Estilos del menú HTML*/
    nav {
      background-color: #1ba43c;
      display: flex;
      justify-content: center;
      padding: 10px;
    }

    nav ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
    }

    nav ul li {
      display: inline;
      margin: 0 10px;
    }

    nav ul li a {
      color: #fff;
      text-decoration: none;
    }

    /* Estilos del contenido principal */
    main {
      padding: 0px;
    }

    h2 {
      margin-top: 0;
      font-family: Monserrat, Arial, sans-serif;
      font-size: 24px;
    }

    p {
      line-height: 1.5;
    }

    /* Estilos del pie de página */
    footer {
      background-color: #1ba43c;
      color: #fff;
      padding: 20px;
      text-align: center;
    }

    /* Estilos para la sección Hero */
    .hero {
      background-image: url("https://fumigaciones-laplata.com/img/fumigaciones-la-plata.webp");
      background-size: cover;
      background-position: center;
      height: 600px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .hero h1 {
    font-family: Monserrat,Arial,sans-serif;
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 4px 5px black;
    }

    .hero .action-buttons {
      margin-top: 20px;
    }

    .hero .action-buttons a {
    display: inline-block;
    background-color: #1ba43c;
    color: #fff;
    padding: 10px 20px;
    margin-right: 10px;
    text-decoration: none;
    }

    .hero .action-buttons a i {
      margin-right: 5px;
    }

    /* Estilos para los iconos */
    .icon {
      display: inline-block;
      width: 20px;
      height: 20px;
      background-color: #000;
      margin-right: 5px;
    }

/* Estilos para la sección de servicios */
#servios {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

#servicios .servicio {
  width: calc(95% - 10px);
  margin-bottom: 20px;
  padding: 25px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

#servicios .servicio h3 {
  font-family: Monserrat, Arial, sans-serif;
  font-size: 20px;
  color: #075E54;
  margin-top: 10px;
  padding: 25px;
  text-align: center;
}

#servicios .servicio p {
  line-height: 1.5;
}

#servicios .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #075E54;
  margin-right: 5px;
  border-radius: 50%;
}