.contact-section {
  padding: 5rem 2rem;
  background: #f9fcff;
  border-top: 1px solid #e0f4ff;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-wrapper {
    flex-direction: row;
  }
}

.contact-text {
  flex: 1;
}

.contact-text h2 {
  font-size: 2.2rem;
  color: #0b2e4e;
  margin-bottom: 1rem;
}

.contact-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
}

.contact-highlights {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.contact-highlights li {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #007ba7;
}

.contact-button {
  display: inline-block;
  background-color: #00c8ff;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.contact-button:hover {
  background-color: #009fc4;
}

.contact-form {
  flex: 1;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #d6eaff;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form button {
  background-color: #00c8ff;
  color: #fff;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #009fc4;
}

/* Estilos para el checkbox de aceptación */
.contact-form .form-check {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #444;
}

.contact-form .form-check-input {
  margin-right: 0.5rem;
  accent-color: #00c8ff; /* Cambiar el color del checkbox */
}

.contact-form .form-check-label {
  font-size: 1rem;
  color: #444;
}

.contact-form .form-check-label a {
  color: #00c8ff;
  text-decoration: none;
}

.contact-form .form-check-label a:hover {
  text-decoration: underline;
}
