/* Genel sayfa stil ayarları */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* Üst başlık */
header {
  background-color: #004080;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

/* Navigasyon menüsü */
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: #e0e0e0;
  margin: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #004080;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #0066cc;
}

/* İçerik bölümleri */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  background-color: white;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
}

section h2 {
  color: #004080;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

section img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 6px;
}

/* Footer */
footer {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}