body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #222;
}

.header {
  background-color: #ffffff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.logo {
  height: 115px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.navbar {
  display: flex;
  gap: 30px;
}

.navbar a {
  text-decoration: none;
  color: #002e5d;
  font-weight: bold;
}

.hero {
  padding: 60px 20px;
  background: #f9f9f9;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 320px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #002e5d;
}

.hero-img {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.hero-img img {
  max-width: 100%;
  height: auto;
}

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

.btn-primary, .btn-secondary {
  padding: 10px 20px;
  margin-right: 10px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.btn-primary {
  background-color: #002e5d;
  color: #fff;
}

.btn-secondary {
  background-color: #ccc;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  text-align: center;
}

.step img {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 20px;
  color: #002e5d;
}

.benefits {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.benefits li img {
  width: 20px;
  margin-right: 10px;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form input, form select {
  padding: 10px;
  margin-bottom: 15px;
  font-size: 16px;
}

footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  color: #666;
  background-color: #f1f1f1;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav li a {
  text-decoration: none;
  color: #002e5d;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text, .hero-img {
    flex: unset;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    display: block;
    margin: 10px auto;
  }

  .navbar {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  }

  .navbar.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* NAVBAR */
.navbar {
  display: flex;
  gap: 20px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* RESPONSIVE NAVBAR */
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #ccc;
  }

  .navbar.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: #002e5d;
  }
}
form input[type="email"],
form input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.asesor-form label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
}

.asesor-form textarea {
  width: 100%;
  min-height: 80px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}