#kvkk {
  background: linear-gradient(135deg, var(--gradian7), var(--gradian8));
  color: white;
  padding: 60px 40px;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: all 0.3s ease-in-out;
}

#kvkk .content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#kvkk h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 10px;
  border-left: 5px solid var(--dort);
  padding-left: 15px;
}

#kvkk p {
  color: #e0f7fa;
  line-height: 1.6;
  font-size: 1.05rem;
}

#kvkk a {
  color: #aef;
  text-decoration: underline;
}

#kvkk a:hover {
  color: #fff;
  text-decoration: none;
}

#kvkk .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--dort);
  color: var(--gradian7);
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  max-width: fit-content;
}

#kvkk .btn:hover {
  background-color: var(--hover);
  color: var(--text-hover);
  box-shadow: 0 10px 25px -10px var(--golge);
}

/* 🔹 Madde listesi stil */
#kvkk .bullet-list {
  list-style: none;
  padding-left: 0;
}

#kvkk .bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #e0f7fa;
}

#kvkk .bullet-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dort);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  #kvkk {
    padding: 40px 20px;
    text-align: center;
    flex-direction: column;   /* flex yönünü dikeye çevir */
    align-items: center;      /* ortala çocukları */
  }

  #kvkk .content {
    padding: 0;
    align-items: center;      /* içerik içindeki elemanları ortala */
  }

  #kvkk h1 {
    text-align: center;       /* Başlık da ortalansın */
    border-left: none;        /* soldaki çizgiyi kaldır */
    padding-left: 0;
    margin-bottom: 20px;
  }

  #kvkk p {
    font-size: 1rem;
    text-align: center;
  }

  #kvkk .btn {
    margin: 20px auto 0 auto;
    display: block;           /* buton tek satırda ortalanır */
  }

  #kvkk .bullet-list {
    padding-left: 0;
    text-align: left;         /* madde listesini sola hizala */
  }

  #kvkk .bullet-list li {
    justify-content: flex-start;  /* maddeleri sola hizala */
  }
}
