html {
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.card {
  border: 1px solid #e9ecef;
}
.section-title {
  font-weight: 600;
  color: #212529;
}
.lead-muted {
  color: #6c757d;
  font-size: 1.1rem;
}
.footer-section {
  background-color: #f8f9fa;
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: #6c757d;
}
.footer-section h5 {
  color: #212529;
  font-weight: 600;
}

/* Hero Section Arkaplan Resmi İçin */
.hero-section-bg {
    position: relative;
    color: white; /* Resim üzerinde metin rengini beyaz yap */
}
.hero-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/hero-background.jpg"); /* Resim dosyasının yolu */
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* %10 opaklık */
    z-index: 1;
    background-color: #111827; /* Resim yüklenemezse görünecek koyu renk */
}
.hero-section-bg > .container { /* İçeriğin (metin, buton) resmin üzerinde kalması için */
    position: relative;
    z-index: 2;
}
