/* ========= Datenschutz Page Styles ========= */

/* Hero Section */
.hero-datenschutz {
  background: linear-gradient(135deg, #4338CA, #6B5AED);
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.hero-overlay {
  max-width: 860px;
  margin: 0 auto;
}

.hero-datenschutz h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-datenschutz p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

/* Content Section */
.datenschutz-content {
  padding: 80px 0;
  background: var(--white);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 2rem;
  text-align: center;
}

.datenschutz-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.datenschutz-text p {
  margin-bottom: 1.5rem;
}

.datenschutz-text p:last-child {
  margin-bottom: 0;
}

.datenschutz-text a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.datenschutz-text a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-datenschutz {
    padding: 20px;
    height: 70vh;
    min-height: 400px;
  }
  
  .hero-datenschutz h1 {
    font-size: clamp(28px, 6vw, 40px);
  }
  
  .hero-datenschutz p {
    font-size: 1rem;
  }
  
  .datenschutz-content {
    padding: 60px 0;
  }
  
  .content-wrapper h2 {
    font-size: 2rem;
  }
  
  .datenschutz-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-datenschutz h1 {
    font-size: clamp(24px, 7vw, 32px);
  }
  
  .hero-datenschutz p {
    font-size: 0.95rem;
  }
  
  .content-wrapper h2 {
    font-size: 1.8rem;
  }
}
