/* KVKK & Politika Sayfaları Stilleri */
body {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 25%, #8B0000 75%, #722F37 100%);
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.kvkk-container {
  max-width: 900px;
  margin: calc(var(--header-h-sticky) + 120px) auto 80px;
  padding: 40px 20px 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.kvkk-container h1 {
  color: #8B0000;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.kvkk-container h2 {
  color: #A0522D;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 0.5rem;
}

.kvkk-container p {
  color: #2D3748;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.kvkk-container a {
  color: #8B0000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.kvkk-container a:hover {
  color: #A0522D;
  text-decoration: underline;
}

/* Form Stilleri */
.kvkk-form {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(139, 0, 0, 0.1);
  margin-top: 2rem;
}

.kvkk-form label {
  display: block;
  color: #2D3748;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.kvkk-form input,
.kvkk-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.kvkk-form input:focus,
.kvkk-form textarea:focus {
  outline: none;
  border-color: #8B0000;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.kvkk-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.kvkk-form .form-full {
  margin-bottom: 1rem;
}

.kvkk-form button {
  background: linear-gradient(135deg, #8B0000 0%, #A0522D 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kvkk-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .kvkk-container {
    margin: calc(var(--header-h-sticky) + 90px) 20px 60px;
    padding: 32px 20px 60px;
    border-radius: 15px;
  }
  
  .kvkk-container h1 {
    font-size: 2rem;
  }
  
  .kvkk-form .form-grid {
    grid-template-columns: 1fr;
  }
  
  .kvkk-form {
    padding: 1.5rem;
  }
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kvkk-container {
  animation: fadeInUp 0.6s ease-out;
}

.kvkk-container h1 {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.kvkk-container h2 {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.kvkk-container p {
  animation: fadeInUp 0.6s ease-out 0.6s both;
}
