* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

header {
  background-color: #111;
  color: #fff;
  padding: 25px 0;
  text-align: center;
}

header h1 {
  font-size: 2.4rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}


#navegacion ol {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

#navegacion a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 8px 14px;
  transition: background-color 0.3s ease;
}

#navegacion a:hover {
  background-color: #2e7d32; 
  border-radius: 6px;
}


main {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}


.split {
  background-color: #ffffff;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 8px;
  border-left: 6px solid #2e7d32;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.split h2 {
  margin-bottom: 15px;
  color: #111;
}

.split p {
  margin-bottom: 15px;
  text-align: justify;
}

.split ul {
  padding-left: 20px;
}

.split ul li {
  margin-bottom: 8px;
}

footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 0.9rem;
}