body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background-color: #fff;
}

/* Navegación */
nav {
  background-color: #cc0000;
  color: #fff;
  padding: 10px 20px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  max-height: 50px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px;
}

.nav-links a:hover {
  color: #ffcc00;
}

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* Secciones */
section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

h2 {
  color: #0033a0;
  border-bottom: 2px solid #cc0000;
  display: inline-block;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}

/* Logos */
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #0033a0;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    text-align: center;
    margin-top: 10px;
  }
  .hero {
    height: auto;
    padding: 40px 0;
  }
  .hero h1 {
    font-size: 24px;
  }
}
