body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f7fa;
  color: #333;
}

/* HEADER */
header {
  background: #0053a0;
  color: white;
  padding: 15px 30px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 45px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.nav-links a:hover {
  color: #ffdd57;
}

/* CONTENIDO PRINCIPAL */
.container {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.container h2 {
  color: #0053a0;
  margin-bottom: 10px;
  text-align: center;
}

.intro {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* FORMULARIO */
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.apply-form input[type="file"] {
  border: none;
}

.apply-form button {
  background: #0053a0;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.apply-form button:hover {
  background: #003d70;
}

/* FOOTER */
footer {
  background: #e1e4e8;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: #555;
  margin-top: 40px;
}
