.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px auto;
  padding: 0 20px;
  max-width: 1200px;
  font-family: 'Poppins', sans-serif;
}

/* Columna izquierda */
.contact-info {
  flex: 1 1 50%;
  max-width: 50%;
  color: #003366;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #f4b216;
  margin-top: 20px;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.contact-info i {
  margin-right: 8px;
  color: #003366;
}

.contact-info a {
  color: #003366;
  text-decoration: none;
}

/* Logos */
.logos-financiacion {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  align-items: center;
}
.logos-financiacion img {
  height: 48px;
  object-fit: contain;
}

/* Columna derecha: Formulario */
.contact-form {
  flex: 1 1 45%;
  max-width: 45%;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #003366;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #003366;
  font-family: inherit;
}

.submit-btn {
  background-color: #003366;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background-color: #f4b216;
  color: #003366;
}

/* Responsive */
@media screen and (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    padding: 0 15px;
  }
  .contact-info,
  .contact-form {
    max-width: 100%;
  }
}
