/* Gizlilik Politikası Sayfası Stilleri */
.privacy-policy-section {
  padding: 60px 0;
  background-color: var(--secondary);
  color: #333;
}

.privacy-header {
  text-align: left;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.privacy-header h1 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.last-updated {
  color: #777;
  font-style: italic;
}

.privacy-content {

  margin: 0 auto;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.policy-section p {
  margin-bottom: 15px;
}

.policy-section ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.policy-section ul li {
  margin-bottom: 8px;
}

address {
  font-style: normal;
  margin-top: 15px;
}

address p {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .privacy-header h1 {
    font-size: 28px;
  }
  
  .policy-section h2 {
    font-size: 22px;
  }
  
  .privacy-policy-section {
    padding: 40px 0;
  }
}