body_ {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    h2 {
      color: orange;
      margin-bottom: 5px;
    }

    .container_2 {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
      max-width: 1200px;
      width: 100%;
    }

    .formulario {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
    }

    .formulario form {
      background-color: #FFF6E7;
      display: flex;
      justify-content: center;
      flex-direction: column;
      flex-wrap: wrap;
      align-content: space-between;
      align-items: baseline;
    }

    .formulario input,
    .formulario textarea {
      margin-bottom: 10px;
      padding: 10px;
      border: 2px solid orange;
      font-size: 16px;
      width: 100%;
      border-radius: 5px;
    }

    .formulario textarea {
      height: 150px;
    }

    .formulario button {
      background-color: orange;
      color: white;
      border: 2px solid orange;
      padding: 10px 25px;
      font-size: 16px;
      cursor: pointer;
      align-self: flex-start;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .formulario button:hover {
      background-color: #ffffff;
      color: orange;
      border: 2px solid orange;
    }

    .mapa {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
      height: 330px;
    }

    @media (max-width: 768px) {
      .container_2 {
        flex-direction: column;
        align-items: center;
      }

      .mapa {
        width: 100%;
        height: 300px;
      }
    }