/* Genel Sayfa Ayarları */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

/* Üst ve Alt Bölüm */
header, footer {
  background: #222;
  color: white;
  padding: 1em;
  text-align: center;
}

/* Navigasyon */
nav {
  text-align: center;
  margin-top: 1em;
}

nav a {
  margin: 0 1em;
  color: #ddd;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* Navigasyon Liste (ul) */
.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  margin: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Logo Görseli */
.logo {
  height: auto;
  max-width: 300px;
  margin-bottom: 1em;
  object-fit: contain;
  vertical-align: middle;
}

/* Ana İçerik Alanı */
main {
  max-width: 800px;
  margin: auto;
  padding: 2em;
  text-align: center;
}

/* Bölümler */
section {
  margin-bottom: 2em;
}

/* Başlıklar */
h2 {
  color: #000;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 0.5em;
}

/* Paragraflar ve Liste */
p, ul {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: left;
}

/* Liste Ayarları */
ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: "• ";
  color: #000;
  font-weight: bold;
}

/* Hizmet Listesi */
.services-list {
  list-style: none;
  padding-left: 0;
}

.services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  font-size: 1.1em;
}

.services-list li::marker {
  color: transparent;
}

.services-list li i {
  margin-right: 8px;
  color: #000;
}

/* Randevu Butonu */
.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #444;
}

/* Form Düzeni */
form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 2em auto;
  background: white;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Form Alanları */
input, textarea {
  margin-bottom: 1em;
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

/* Form Butonu */
button {
  padding: 0.75em;
  background: #222;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #444;
}

/* Mobil Uyumluluk */
@media screen and (max-width: 768px) {
  main {
    padding: 1em;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  h2 {
    font-size: 1.5em;
  }

  .services-list li {
    font-size: 1em;
  }

  .logo {
    max-width: 200px;
  }
}
