
        body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; background: #eafaf1; color: #0d3d2b; }
        header { background: #1c3c34; color: #fff; padding: 40px 20px; text-align: center; }
        header h1 { margin: 0; font-size: 2.5em; text-shadow: 1px 1px 4px #000; }
        header p { margin-top: 10px; font-size: 1.2em; }
        nav { background: #2e5047; text-align: center; padding: 10px; }
        nav a { display: inline-block; background: #3a7f67; color: #fff; margin: 5px; padding: 8px 15px; border-radius: 20px; text-decoration: none; font-weight: bold; transition: background 0.3s; }
        nav a:hover { background: #2c6d58; color: #fff; }
        section { max-width: 900px; margin: 30px auto; background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
        h2 { color: #1c3c34; border-bottom: 2px solid #3a7f67; padding-bottom: 5px; margin-bottom: 15px; display: flex; align-items: center; }
        h2 i { margin-right: 10px; }
        ul { list-style-type: disc; padding-left: 20px; }
        li { margin-bottom: 8px; }
        .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .grid-column li { margin-bottom: 20px; }
        a { color: #2e5047; text-decoration: none; }
        a:hover { text-decoration: underline; color: #0d3d2b; }
        .tag-cloud { text-align: center; margin-top: 20px; }
        .tag-cloud a { margin: 5px; display: inline-block; color: #1c3c34; transition: transform 0.2s; text-decoration: none; font-size: 12px; }
        .tag-cloud a:hover { transform: scale(1.2); color: #0d3d2b; }
        footer { text-align: center; padding: 20px; font-size: 0.9em; color: #666; }
    
@media (min-width: 769px) {
  .nav-container {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
}

.tag-cloud div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.tag-cloud a {
  background-color: #3a7f67;
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
}
.tag-cloud a:hover {
  background-color: #2e6654;
}

.tag-cloud div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  animation: fadeIn 1.5s ease-in;
}

.tag-cloud a {
  text-decoration: none;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  font-weight: bold;
  color: white;
  transition: transform 0.3s ease, background 0.3s ease;
  background-color: #3a7f67;
  animation: popin 0.6s ease forwards;
}

.tag-cloud a:hover {
  background-color: #2e6654;
  transform: scale(1.15);
}


.tag-cloud div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag-cloud a {
  background-color: #3a7f67;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: bold;
}
.tag-cloud a:hover {
  background-color: #2e6654;
}


  @media (max-width: 768px) {
    body {
      font-size: 16px;
      padding: 0 1rem;
    }
    .grid {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .grid > div {
      width: 100% !important;
    }
    nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    nav a {
      display: block;
      text-align: center;
    }
    section {
      padding: 1rem 0;
    }
    h1 {
      font-size: 1.8rem;
    }
    h2 {
      font-size: 1.3rem;
    }
  }


@media (max-width: 768px) {
  section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}


.nav-container {
  background: transparent;
  padding: 0.5rem;
}
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  background-color: rgba(60, 100, 85, 0.8);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  transition: 0.3s;
}
.nav-menu li a:hover {
  background-color: rgba(40, 90, 70, 0.9);
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    text-align: center;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .nav-menu.show {
    display: flex;
  }
}


