/* ==========================================================================
   GİZLİLİK POLİTİKASI SAYFASI STİLLERİ
   ========================================================================== */

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.gizlilik-hero {
  background: linear-gradient(135deg, #071D49 0%, #0a2a66 100%);
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
}

.gizlilik-hero .page-title {
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  margin: 0;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   CONTENT SECTION
   -------------------------------------------------------------------------- */
.content-section {
  background: #f5f6f8;
  padding: 3rem 0 4rem;
}

.content-card {
  background: #fff;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.content-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #071D49;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #005bff;
}

.content-body {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.8;
}

.content-body .content-subtitle {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
}

.content-body p {
  margin-bottom: 1rem;
}

.content-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #071D49;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-body ul,
.content-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.content-body ul li {
  list-style-type: disc;
}

.content-body ol li {
  list-style-type: decimal;
}

.content-body a {
  color: #005bff;
  text-decoration: none;
}

.content-body a:hover {
  text-decoration: underline;
}

.content-date {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e9f0;
  font-size: 0.85rem;
  color: #888;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
  .gizlilik-hero {
    min-height: 160px;
  }
  
  .gizlilik-hero .page-title {
    font-size: 2.2rem;
  }
  
  .content-card {
    padding: 2rem 1.5rem;
    border-radius: 0;
  }
  
  .content-title {
    font-size: 1.25rem;
  }
  
  .content-body {
    font-size: 0.9rem;
  }
  
  .content-body h3 {
    font-size: 1rem;
  }
}

