/* Genel Stil Ayarları */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Hero Bölümü */
.hero-section {
  background: url('hero-image.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Başlıklar */
h2 {
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
}
