* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2b2b2b;
  background-color: #f4f5f7;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

header {
  text-align: center;
  border-bottom: 3px solid #1f4e79;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2rem;
  color: #1f4e79;
}

header .cargo {
  font-size: 1.1rem;
  color: #555;
  margin: 5px 0 10px;
}

header address {
  font-style: normal;
  font-size: 0.95rem;
}

header address a {
  color: #1f4e79;
  text-decoration: none;
}

header address a:hover {
  text-decoration: underline;
}

section {
  margin-bottom: 30px;
}

section h2 {
  font-size: 1.3rem;
  color: #1f4e79;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

article {
  margin-bottom: 15px;
}

article h3 {
  font-size: 1.05rem;
}

.periodo {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
  margin-bottom: 8px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 6px;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}