/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* Contenedor centrado */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* Logo responsive */
.logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

/* Información de contacto */
.contact-info {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #0073aa;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 1rem;
}

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

.contact-info a:hover {
  text-decoration: underline;
}
