/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Contenedor principal */
.container {
  width: 960px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

/* Encabezado */
header {
  background-color: #1e90ff;
  color: white;
  padding: 20px;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Secciones */
section {
  padding: 60px 20px;
  border-bottom: 1px solid #ccc;
}

#inicio {
  background-color: #f0f8ff;
}

#servicios {
  background-color: #ffe4e1;
}

#sobre-nosotros {
  background-color: #e6ffe6;
}

#contacto {
  background-color: #fffacd;
}

/* Pie de página */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
}