/* Genel Ayarlar */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f7f8fa;
  color: #1c1c1e;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 15px 40px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #4facfe;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  color: #1c1c1e;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #4facfe;
}

/* Footer */
footer {
  padding: 30px 20px;
  background: #1c1c1e;
  color: #fff;
  text-align: center;
  font-size: 14px;
  border-radius: 15px;
  margin-top: 40px;
}

footer a {
  color: #4facfe;
  margin: 0 5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  text-decoration: underline;
  color: #00f2fe;
}

.footer-socials {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-socials a {
  display: inline-block;
  flex-shrink: 0; /* Safari'deki küçülme sorununu engeller */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials a:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.footer-socials .social-icon {
  width: 28px;
  height: 28px;
}

/* Policy ve Support Sayfaları için Stiller */

h1 {
  font-size: 32px;
  text-align: center;
  color: #1c1c1e;
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  line-height: 1.8;
  margin-bottom: 40px;
}

.content-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: #4facfe;
  margin-top: 25px;
  margin-bottom: 10px;
}

.content-box p,
.content-box li {
  font-size: 16px;
  color: #4a4a4a;
}

.content-box ul {
  margin-left: 20px;
  list-style-type: disc;
}

.content-box ul li {
  margin-bottom: 8px;
}

.content-box a {
  color: #007bff;
  text-decoration: none;
}

.content-box a:hover {
  text-decoration: underline;
}

/* Responsive Stiller */
@media (max-width: 1024px) {
  .nav-container {
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .content-box {
    padding: 20px;
  }

  h1 {
    font-size: 28px;
  }

  .content-box h2 {
    font-size: 20px;
  }
}

/* İletişim Formu Stilleri - Estetik Güncelleme */
.contact-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1c1c1e;
  background-color: #f0f2f5; /* Yumuşak arka plan rengi */
  border: 2px solid transparent; /* Kenarlığı başlangıçta şeffaf yap */
  border-radius: 12px; /* Daha yuvarlak köşeler */
  transition: border-color 0.3s, background-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999; /* Placeholder metin rengi */
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: #fff; /* Tıklayınca arka plan beyaz olur */
  border-color: #4facfe; /* Tıklayınca kenarlık mavi olur */
}

.form-button {
  display: inline-block;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}