body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 20px auto;
  padding: 0 15px;
  max-width: 1200px;
  background: #fdfdfd;
  color: #222;
  line-height: 1.6;
}

h1, h2 {
  color: #00539C;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

article {
  margin-top: 40px;
  max-width: 1200px;
  padding: 0 15px;
}

/* Layout: texto a la izquierda, imágenes/datos a la derecha */
.two-columns {
  display: flex;
  justify-content: flex-start; /* Alinea todo a la izquierda */
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.text-column {
  flex: 0 0 55%;
  min-width: 280px;
  text-align: justify;
}

.img-column, .fact-card {
  flex: 0 0 35%;
  max-width: 300px;
  margin-left: 60px;
}

/* Estilo para imágenes */
.img-column img {
  width: 80%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* Estilo para datos curiosos */
.fact-card {
  background: #e8f0fe;
  border-left: 5px solid #00539C;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  align-self: center;
  margin-left: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .two-columns {
    flex-direction: column;
  }
  .img-column, .fact-card {
    max-width: 100%;
    margin-top: 15px;
  }
}
form {
  max-width: 600px;
  background: #e8f0fe;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #00539C;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 40px;
}

form label {
  display: block;
  margin-bottom: 15px;
  color: #00539C;
  font-weight: 600;
}

form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: vertical;
  font-family: inherit;
  box-sizing: border-box;
  margin-top: 5px;
}

form input[type="email"]:focus,
form textarea:focus {
  border-color: #0077cc;
  outline: none;
  box-shadow: 0 0 5px #0077cc;
}

form button {
  background-color: #00539C;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #003f6d;
}
form p{
  background-color: #e8f0fe;
  color: #222;
}