

/* Demo-Body nur für die Vorschau */
    body {
      margin: 0;
      padding: 0;
      background: #f5f5f5;
    }
    .dschutz {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 80px 20px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .dschutz-content {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 30px;
      padding: 80px 60px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .dschutz-content:hover {
      transform: translateY(-5px);
    }

    .dschutz-content::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
      animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.1); opacity: 0.8; }
    }

    .dschutz-text {
      position: relative;
      z-index: 2;
      animation: slideInLeft 0.8s ease-out;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .dschutz-text h1 {
      font-size: 3.5rem;
      font-weight: 800;
      color: #1a202c;
      margin-bottom: 25px;
      line-height: 1.2;
    }

    .dschutz-text h1 span {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      animation: gradientShift 3s ease infinite;
    }

    @keyframes gradientShift {
      0%, 100% { filter: hue-rotate(0deg); }
      50% { filter: hue-rotate(20deg); }
    }

    .dschutz-text p {
      font-size: 1.2rem;
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 35px;
    }

    .dschutz-text a {
      display: inline-block;
      padding: 18px 45px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
      position: relative;
      overflow: hidden;
    }

    .dschutz-text a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
    }

    .dschutz-text a:hover::before {
      left: 100%;
    }

    .dschutz-text a:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    }

    .dschutz-image {
      position: relative;
      z-index: 2;
      animation: slideInRight 0.8s ease-out;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .image-container {
      position: relative;
      width: 100%;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      width: 100%;
    }

    .icon-card {
      background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
      border-radius: 20px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      animation: float 3s ease-in-out infinite;
    }

    .icon-card:nth-child(1) { animation-delay: 0s; }
    .icon-card:nth-child(2) { animation-delay: 0.5s; }
    .icon-card:nth-child(3) { animation-delay: 1s; }
    .icon-card:nth-child(4) { animation-delay: 1.5s; }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    .icon-card:hover {
      background: linear-gradient(135deg, #667eea25 0%, #764ba225 100%);
      border-color: #667eea;
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    }

    .icon-card img {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.3));
      transition: transform 0.3s ease;
    }

    .icon-card:hover img {
      transform: scale(1.1) rotate(5deg);
    }

    .icon-card span {
      font-size: 1rem;
      font-weight: 600;
      color: #1a202c;
      text-align: center;
    }

    .feature-badges {
      display: flex;
      gap: 15px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .badge {
      background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      color: #667eea;
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid #667eea40;
      transition: all 0.3s ease;
    }

    .badge:hover {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      transform: scale(1.05);
    }

    .badge::before {
      content: '✓';
      font-weight: bold;
      font-size: 1.1rem;
    }

    @media (max-width: 1024px) {
      .dschutz-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 40px;
      }

      .dschutz-text h1 {
        font-size: 2.8rem;
      }

      .image-container {
        height: 400px;
      }
    }

    @media (max-width: 768px) {
      .dschutz-content {
        padding: 40px 30px;
        border-radius: 20px;
      }

      .dschutz-text h1 {
        font-size: 2.2rem;
      }

      .dschutz-text p {
        font-size: 1.1rem;
      }

      .icon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .icon-card {
        padding: 30px;
      }

      .image-container {
        height: auto;
      }
    }

    @media (max-width: 480px) {
      body {
        padding: 10px;
      }

      .dschutz-content {
        padding: 30px 20px;
      }

      .dschutz-text h1 {
        font-size: 1.8rem;
      }

      .dschutz-text p {
        font-size: 1rem;
      }

      .dschutz-text a {
        padding: 15px 35px;
        font-size: 1rem;
      }

      .feature-badges {
        gap: 10px;
      }

      .badge {
        font-size: 0.85rem;
        padding: 8px 16px;
      }
    }



    /* ========================================================  Datenschutz Text   =========================== */ 

     /* Demo-Hintergrund nur für Vorschau */
    body {
      margin: 0;
      padding: 0;
      background: #f8f9fa;
    }

    .datenschutz-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .datenschutz-container h1 {
      font-size: 3.5rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: fadeInDown 0.8s ease-out;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .datenschutz-container .intro {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
      padding: 40px;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
      border-radius: 20px;
      border: 2px solid rgba(102, 126, 234, 0.2);
      animation: fadeIn 1s ease-out 0.2s both;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .datenschutz-container .intro p {
      font-size: 1.15rem;
      line-height: 1.8;
      color: #4a5568;
      margin: 0;
    }

    .datenschutz-container section:not(.intro):not(.contact) {
      background: white;
      border-radius: 20px;
      padding: 40px;
      margin-bottom: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      border-left: 5px solid transparent;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      animation: slideInUp 0.6s ease-out both;
    }

    .datenschutz-container section:not(.intro):not(.contact):nth-child(3) {
      animation-delay: 0.1s;
    }

    .datenschutz-container section:not(.intro):not(.contact):nth-child(4) {
      animation-delay: 0.2s;
    }

    .datenschutz-container section:not(.intro):not(.contact):nth-child(5) {
      animation-delay: 0.3s;
    }

    .datenschutz-container section:not(.intro):not(.contact):nth-child(6) {
      animation-delay: 0.4s;
    }

    .datenschutz-container section:not(.intro):not(.contact):nth-child(7) {
      animation-delay: 0.5s;
    }

    .datenschutz-container section:not(.intro):not(.contact):nth-child(8) {
      animation-delay: 0.6s;
    }

    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .datenschutz-container section:not(.intro):not(.contact)::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 5px;
      height: 0;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      transition: height 0.3s ease;
    }

    .datenschutz-container section:not(.intro):not(.contact):hover {
      transform: translateX(10px);
      box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    }

    .datenschutz-container section:not(.intro):not(.contact):hover::before {
      height: 100%;
    }

    .datenschutz-container h2 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1a202c;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .datenschutz-container h2::before {
      content: '';
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
      transition: transform 0.3s ease;
    }

    .datenschutz-container section:hover h2::before {
      transform: rotate(10deg) scale(1.1);
    }

    .data-collection h2::before {
      content: '📊';
      font-size: 1.5rem;
    }

    .usage h2::before {
      content: '🔄';
      font-size: 1.5rem;
    }

    .cookies h2::before {
      content: '🍪';
      font-size: 1.5rem;
    }

    .rights h2::before {
      content: '⚖️';
      font-size: 1.5rem;
    }

    .security h2::before {
      content: '🔒';
      font-size: 1.5rem;
    }

    .changes h2::before {
      content: '📝';
      font-size: 1.5rem;
    }

    .datenschutz-container p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #4a5568;
      margin: 0;
    }

    .datenschutz-container a {
      color: #667eea;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
    }

    .datenschutz-container a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      transition: width 0.3s ease;
    }

    .datenschutz-container a:hover {
      color: #764ba2;
    }

    .datenschutz-container a:hover::after {
      width: 100%;
    }

    .datenschutz-container .contact {
      text-align: center;
      margin-top: 60px;
      padding: 30px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 20px;
      color: white;
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
      animation: fadeIn 1s ease-out 0.8s both;
    }

    .datenschutz-container .contact p {
      color: white;
      font-size: 1rem;
      margin: 0;
      font-weight: 500;
    }

    /* Highlight-Box für wichtige Informationen */
    .highlight-box {
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
      border-left: 4px solid #667eea;
      padding: 20px;
      border-radius: 10px;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .datenschutz-container {
        padding: 40px 15px;
      }

      .datenschutz-container h1 {
        font-size: 2.5rem;
      }

      .datenschutz-container .intro {
        padding: 30px 20px;
      }

      .datenschutz-container section:not(.intro):not(.contact) {
        padding: 30px 20px;
      }

      .datenschutz-container h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .datenschutz-container h2::before {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }

      .datenschutz-container p {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .datenschutz-container h1 {
        font-size: 2rem;
      }

      .datenschutz-container .intro p {
        font-size: 1rem;
      }

      .datenschutz-container section:not(.intro):not(.contact) {
        padding: 25px 15px;
      }

      .datenschutz-container h2 {
        font-size: 1.3rem;
      }
    }

