body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  background-color: #f7fafc;
  color: #2d3748;
  line-height: 1.6;
  text-align: center;
}

header {
  background: linear-gradient(135deg, #2b6cb0, #2c5282);
  color: white;
  padding: 40px 20px;
}

.nav {
  margin-bottom: 15px;
}

.nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  text-decoration: underline;
}

section {
  background: white;
  padding: 50px 25px;
  max-width: 1000px;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

h2 {
  color: #2b6cb0;
  margin-bottom: 20px;
  font-size: 28px;
}

ul {
  padding-left: 0;
  list-style: none;
}

ul li {
  margin-bottom: 10px;
  background: #e8f0fe;
  padding: 10px;
  border-radius: 8px;
}

footer {
  background-color: #1a365d;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.map-container {
  margin-top: 25px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

