/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Open Sans', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Header styling */
header {
  background-color: #004d66;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
  font-weight: 300;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Section styling */
section {
  margin: 40px auto;
  max-width: 800px;
  padding: 20px;
  background-color: #fff;
  border-left: 5px solid #004d66;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

section h2 {
  color: #004d66;
  margin-bottom: 15px;
}

section ul {
  margin-left: 20px;
  list-style-type: disc;
}

/* Contact section */
#contact a {
  color: #004d66;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #666;
}
