/* ================================
   Intiqore – Datenschutz Styles (hellere Version)
   Datei: datenschutz.css
   ================================ */

   .privacy-wrapper {
    background: rgba(255, 255, 255, 0.06); /* leichtes Glas mit Transparenz */
    backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: clamp(24px, 4vw, 48px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    color: var(--text);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto clamp(40px, 8vh, 80px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  
  .privacy-title {
    font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    background:  var(--brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .section {
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .section:last-child {
    border-bottom: none;
  }
  
  .section h2 {
    font-size: 1.25rem;
    color: var(--brand-600);
    margin-bottom: 0.6rem;
    font-weight: 700;
  }
  
  .section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.2rem;
    color: var(--brand);
  }
  
  .section p {
    margin: 0.5rem 0;
    color: var(--text);
  }
  
  .section ul {
    margin: 0.5rem 0 0.5rem 1.3rem;
    padding: 0;
    list-style: disc;
  }
  
  .section li {
    margin-bottom: 0.4rem;
    color: var(--text);
  }
  
  .section li strong {
    color: var(--info);
    font-weight: 600;
  }
  
  .tom-list {
    list-style-type: circle;
    margin-left: 1.3rem;
  }
  
  a {
    color: var(--info);
    text-decoration: underline;
  }
  
  a:hover {
    text-decoration: none;
    color: var(--brand);
  }
  
  @media (max-width: 700px) {
    .privacy-wrapper {
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.09);
    }
    .section h2 {
      font-size: 1.1rem;
    }
    .section h3 {
      font-size: 1rem;
    }
  }
  