      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Inter", sans-serif;
        scroll-behavior: smooth;
        color: #444;
      }

      h2{
        color: #fff;
        font-size: 22px;
      }

      h3{
        color: #fff;
        font-size: 20px;
        padding: 
         }
      
      h4{
        color: #eec406;
        font-size: 26px;
        text-shadow: 2px 2px #000;
      }

      header {
        background: #fff;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 30px;
        border-bottom: 1px solid #a6a5a5;
        flex-wrap: wrap;
      }

      header img {
        height: 70px;
      }

      nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
      }

      nav a {
        margin: 10px;
        text-decoration: none;
        color: #b0adad;
        font-weight: 600;
      }

      nav a:hover {
        color: #72aadc;
      }

      .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
      }

      .menu-toggle span {
        height: 3px;
        width: 25px;
        background: #444;
        margin: 4px 0;
      }

      section {
        padding: 40px 40px;
        text-align: center;
      }

      .parallax {
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        color: rgb(255, 255, 255);
      }
      #hero {
        background-image: url("../img/hero-image_c.png");
        min-height: 67vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
      }
      #hero h4 {
        font-size: 24px;
        margin-top: 160px;
      }

      #contacto {
        background-image: url("../img/hero-image_c.png");
        min-height: 67vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
      }
 
      #contacto p{
        font-size: 18px;
      }
    
      .btn {
        padding: 12px 24px;
        border-radius: 14px;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
      }
      
      .btn-primary {
        background-color: #4db02f;
        color: white;
      }

      .bg-light {
        background: #f4f4f4;
      }



      #servicios{
        background-color: #72aadc;
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
      }

       #Web{
        background-color: #72aadc;
        height: 230px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
      }

      .grid-layout {
        display: grid;
        grid-template-columns: 20% 20% 20% 20%;
        justify-content: center;
        gap: 40px;
        width: 100%;
        margin: 0 auto;
        margin-top: 10px;
        padding:  10px;
      }

      .caja {
       text-align: center;
       line-height: 15px;
      }

      .caja h1{  
               font-size: 18px;
               color: #fff;
               vertical-align: text-bottom;
               padding: 0 10px;
               margin-top: 0px;
               margin-bottom:10px;
      }

      footer {
        background: #72aadc;
        color: white;
        text-align: center;
        padding: 20px;
      }
      @media (max-width: 768px) {
        nav {
          display: none;
          flex-direction: column;
          width: 100%;
        }
        nav.active {
          display: flex;
        }
        .menu-toggle {
          display: flex;
        }
      }