/* CSS içerik buraya yerleştirildi */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}


nav {
  margin-top: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
}

section {
  padding: 50px 25px;
  max-width: 900px;
  margin: 20px auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

h2 {
  color: #1e3d59;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

p {
  margin-bottom: 18px;
}

ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

a {
  color: #1e3d59;
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 25px;
  background: #1e3d59;
  color: white;
  font-size: 0.9rem;
}

@media(max-width:600px){
  header h1 {
    font-size: 1.6rem;
  }
  section {
    padding: 25px 15px;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  body {
    font-size: 15px;
  }
}

h3.small-gap {
  margin-top: 15px;
  margin-bottom: 5px;
}

h3.small-gap + p {
  margin-top: 0;
}

.important-link {
  font-size: 1.2rem;
  font-weight: bold;
  color: #c0392b;
}















/* Genel Tasarım */
body {
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
}

header {
  background-color: #2b2b2b; /* Premium bir koyu renk */
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

header h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Roboto', sans-serif;
}

nav {
  display: flex;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.menu li a {
  text-decoration: none;
  color: #f7f7f7;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.menu li a:hover {
  color: #ffcc00; /* Premium renk tonları için altın sarısı */
}

/* Mobil Uyumlu Tasarım */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .logo-container {
    margin-bottom: 10px;
  }

  .menu {
    flex-direction: column;
    gap: 15px;
  }

  .menu li a {
    font-size: 1.2rem;
  }
}

/* Premium Hover Effects */
.menu li a:hover {
  transform: scale(1.05);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

