:root {
  --text-color: #111;
  --muted-color: #555;
  --border-color: #e5e5e5;
  --bg-color: #fff;

  
  --link-color: #3a8f8a; /* Türkis */
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.75;
}


.privacy {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.privacy__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.privacy__logo img {
  max-width: 550px;
  width: 100%;
  height: auto;
}


.privacy__header {
  margin-bottom: 60px;
}

.privacy__header h1 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.privacy__subtitle {
  font-size: 16px;
  color: var(--muted-color);
}

.privacy__section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.privacy__section:last-of-type {
  border-bottom: none;
}

.privacy__section h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.privacy__section p {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--text-color);
}

.privacy__footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.privacy__footer p {
  font-size: 14px;
  color: var(--muted-color);
}

.privacy__logo a:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .privacy__logo img {
    max-width: 200px;
  }

  .privacy__header h1 {
    font-size: 34px;
  }
}

