
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f2f2f2;
}
header {
    background: #000;
    color: #000;
    padding: 9px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    font-size: 80px;
    font-weight: bold;
}
header nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
}
header nav a {
    color: white;
    text-decoration: none;
}
.hero {
    background: url('cajas.png') no-repeat center center;
    background-size: center;
    background-repeat: repeat;
     background-color: #000;
    color: white;
    text-align: center;
  padding: 300px 260px 320px;
}
.cta-button {
    display: inline-block;
    background: #f4c542;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 10px;
}
form {
    background: white;
    padding: 20px;
    margin: 20px;
}
input, select, button {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 30px 40px;
}

.logo img {
  height: 110px;
}
@media (max-width: 768px) {
  header {
    flex-direction: center;
    align-items: space-between;
    padding: 10px 10px;
  }

  header .logo {
    font-size: 40px;
  }

  header nav ul {
    flex-direction: line;
    gap: 10px;
    padding-left: 0;
    margin-top: 10px;
  }

  .logo img {
    height: 80px;
    padding: 0;
  }

  .hero {
    padding: 80px 20px 100px;
    background-size: cover;
    background-position: center;
  }

  .cta-button {
    font-size: 14px;
    padding: 10px 15px;
  }

  h1, h2, p {
    font-size: 90%;
  }

  form {
    margin: 10px;
    padding: 15px;
  }

  input, select, button {
    font-size: 14px;
  }
