/* Genel Stiller */
:root {
  --primary-color: #6c5ce7;
  --primary-light: #8a7ef5;
  --primary-dark: #5649c0;
  --secondary-color: #ff7675;
  --text-color: #2d3436;
  --text-light: #636e72;
  --background-color: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #f1f1f1;
  --success-color: #00b894;
  --warning-color: #fdcb6e;
  --error-color: #d63031;
  --border-color: #dfe6e9;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --animation-duration: 0.3s;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Butonlar */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
}

/* Header ve Navigasyon */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.menu-toggle.active {
  transform: rotate(90deg);
}

/* Mobil Menü */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.mobile-menu-links a {
  font-weight: 500;
  color: var(--text-color);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.mobile-menu-links a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Hero Bölümü */
.hero {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image .app-screenshot {
  max-width: 300px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-image-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Neden Revisee Bölümü */
.why-revisee {
  padding: 100px 0;
  background-color: var(--background-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
}

/* Uygulama Tanıtım Bölümü */
.app-showcase {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.app-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.app-showcase .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.app-showcase-content {
  flex: 1;
}

.app-showcase-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.app-showcase-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.app-features-list {
  margin-bottom: 30px;
}

.app-features-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.app-features-list li i {
  color: var(--success-color);
  margin-right: 10px;
}

.app-buttons {
  display: flex;
  gap: 15px;
}

.app-store-btn,
.play-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: var(--primary-color);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.app-store-btn:hover,
.play-store-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Uygulama Tanıtım Bölümü için düzeltmeler */
.app-showcase-images {
  flex: 1;
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-showcase-images .app-screenshot {
  position: absolute;
  max-width: 280px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.app-showcase-images .app-screenshot.front {
  top: 50px;
  right: 0;
  z-index: 2;
  transform: rotate(5deg);
  animation: float-front 6s ease-in-out infinite;
}

.app-showcase-images .app-screenshot.back {
  bottom: 50px;
  left: 0;
  z-index: 1;
  transform: rotate(-5deg);
  animation: float-back 6s ease-in-out infinite;
}

@keyframes float-front {
  0% {
    transform: translateY(0px) rotate(5deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(5deg);
  }
}

@keyframes float-back {
  0% {
    transform: translateY(0px) rotate(-5deg);
  }
  50% {
    transform: translateY(15px) rotate(-5deg);
  }
  100% {
    transform: translateY(0px) rotate(-5deg);
  }
}

/* Özellikler Bölümü */
.features {
  padding: 100px 0;
  background-color: var(--background-color);
  position: relative;
  z-index: 5; /* Üst katmana çıkar */
}

.features .section-header {
  position: relative;
  z-index: 5;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature-item:hover {
  background-color: var(--background-light);
  box-shadow: var(--box-shadow);
  transform: translateY(-5px);
}

.feature-item .feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  background-color: rgba(108, 92, 231, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.feature-item .feature-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-item .feature-content p {
  color: var(--text-light);
}

/* Nasıl Çalışır Bölümü */
.how-it-works {
  padding: 100px 0;
  background-color: var(--background-light);
}

.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  position: relative; 
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 70px;
  left: 30px;
  width: 2px;
  height: calc(100% - 30px);
  background-color: var(--primary-light);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-light);
}

/* Kullanıcı Yorumları Bölümü */
.testimonials {
  padding: 100px 0;
  background-color: var(--background-color);
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 350px;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  opacity: 0.8;
  transform: scale(0.95);
}

.testimonial:hover {
  transform: translateY(-10px) scale(1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* CTA Bölümü */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-content .btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  background-color: white;
  color: var(--primary-color);
  border: none;
  transform: scale(1);
  transition: all 0.3s ease;
}

.cta-content .btn:hover {
  background-color: var(--background-light);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* SSS Bölümü */
.faq {
  padding: 100px 0;
  background-color: var(--background-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  background-color: white;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.faq-question {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--background-light);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  color: var(--text-light);
}

.faq-item.active .faq-question {
  background-color: var(--background-light);
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
.footer {
  padding: 80px 0 30px;
  background-color: #2d3436;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-links {
  display: flex;
  gap: 50px;
}

.footer-links-column h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links-column a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links-column a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Legal Pages Styles */
.legal-page {
  padding: 120px 0 80px;
  background-color: var(--background-color);
  min-height: calc(100vh - 100px);
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.legal-header .last-updated {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
  padding: 30px;
  background: var(--background-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.legal-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}

.legal-section h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-color);
  margin: 25px 0 15px;
}

.legal-section h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-color);
  margin: 20px 0 10px;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-section li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: var(--transition);
}

.legal-section a:hover {
  color: var(--primary-dark);
}

.contact-info {
  background: var(--background-color);
  padding: 20px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  margin: 20px 0;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info strong {
  color: var(--primary-color);
}

/* Cookie Table Styles */
.cookie-table {
  margin: 25px 0;
}

.cookie-table h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.cookie-table th,
.cookie-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.cookie-table td {
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-table tr:hover {
  background: var(--background-light);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* Cookie Consent Panel */
.cookie-consent-panel {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  padding: 25px;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 25px 0;
  color: white;
}

.cookie-consent-panel h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.cookie-consent-panel .btn {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-consent-panel .btn:hover {
  background: var(--background-light);
  transform: translateY(-2px);
}

/* Warning Box */
.warning-box {
  background: var(--warning-color);
  color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.warning-box i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.warning-box p {
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
  .legal-page {
    padding: 100px 0 60px;
  }

  .legal-header h1 {
    font-size: 2rem;
  }

  .legal-section {
    padding: 20px;
    margin-bottom: 30px;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .legal-section h3 {
    font-size: 1.2rem;
  }

  .cookie-table {
    overflow-x: auto;
  }

  .cookie-table table {
    min-width: 600px;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .contact-info {
    padding: 15px;
  }

  .cookie-consent-panel {
    padding: 20px;
  }

  .warning-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .legal-header h1 {
    font-size: 1.8rem;
  }

  .legal-section {
    padding: 15px;
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }

  .legal-section h3 {
    font-size: 1.1rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

/* Responsive Tasarım için düzeltmeler */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .app-showcase .container {
    flex-direction: column;
  }

  .app-showcase-images {
    height: 500px;
    margin-top: 40px;
    width: 100%;
  }

  .features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .navbar {
    position: relative;
  }

  .nav-links,
  .nav-buttons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 50px;
  }

  .hero-image .app-screenshot {
    max-width: 250px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-item .feature-icon {
    margin-bottom: 15px;
  }

  .app-showcase {
    padding: 80px 0;
  }

  .app-showcase-content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .app-showcase-content p {
    text-align: center;
  }

  .app-features-list {
    max-width: 400px;
    margin: 0 auto 30px;
  }

  .app-buttons {
    justify-content: center;
  }

  .app-showcase-images {
    height: 400px;
    position: relative;
    overflow: visible;
  }

  .app-showcase-images .app-screenshot {
    position: relative;
    max-width: 220px;
    margin: 0 auto;
  }

  .app-showcase-images .app-screenshot.front {
    top: 0;
    right: auto;
    transform: rotate(5deg);
    position: relative;
    right: 50%;
    margin-right: -180px;
  }

  .app-showcase-images .app-screenshot.back {
    bottom: 0;
    left: auto;
    transform: rotate(-5deg);
    position: absolute;
    left: 50%;
    margin-left: -180px;
    top: 0;
  }

  .how-it-works {
    padding: 80px 0;
  }

  .step {
    gap: 20px;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonial {
    flex: 0 0 300px;
    padding: 20px;
  }

  .cta {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .faq {
    padding: 80px 0;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-links-column {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .app-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .app-store-btn,
  .play-store-btn {
    width: 100%;
    justify-content: center;
  }

  .app-showcase {
    padding: 60px 0 120px; /* Alt kısımda daha fazla boşluk bırak */
  }

  .app-showcase .container {
    position: relative;
  }

  .app-showcase-content {
    width: 100%;
    z-index: 3;
    position: relative;
  }

  .app-showcase-images {
    height: 380px;
    margin-top: 20px;
    position: relative;
    overflow: visible;
  }

  .app-showcase-images .app-screenshot {
    max-width: 180px;
  }

  .app-showcase-images .app-screenshot.front {
    top: 0;
    right: 50%;
    margin-right: -140px;
    transform: rotate(5deg);
  }

  .app-showcase-images .app-screenshot.back {
    bottom: -60px; /* Aşağıya doğru daha fazla yer */
    left: 50%;
    margin-left: -140px;
    transform: rotate(-5deg);
    top: 0;
  }

  .how-it-works {
    padding: 80px 0;
  }

  .step {
    gap: 20px;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonial {
    flex: 0 0 280px;
    padding: 20px;
  }

  .cta {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .faq {
    padding: 80px 0;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-links-column {
    flex: 0 0 100%;
  }
}

@media (max-width: 400px) {
  .section-header h2 {
    font-size: 1.6rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .app-showcase {
    padding: 60px 0 140px; /* Daha fazla alt boşluk */
  }

  .app-showcase-images {
    height: 340px;
  }

  .app-showcase-images .app-screenshot {
    max-width: 150px;
  }

  .app-showcase-images .app-screenshot.front {
    margin-right: -120px;
  }

  .app-showcase-images .app-screenshot.back {
    bottom: -80px; /* Daha da aşağıya */
    margin-left: -120px;
    transform: rotate(-5deg);
    top:0;
  }

  .testimonial {
    flex: 0 0 260px;
    padding: 15px;
  }

  .features {
    padding-top: 140px; /* Daha da fazla üst boşluk */
  }
}
