* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  .background {
    background-image: url('Dentalstudio_Tegernsee_Hintergrund-min.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .content {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 800px;
  }
  /* Sticky Hintergrund für Datenschutzerklärung */
.background-daten, .background-impressum {
  background-image: url('Dentalstudio_Tegernsee_Hintergrund-min.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start; /* Box oben ausgerichtet */
  background-attachment: fixed; /* Macht den Hintergrund sticky */
  min-height: fit-content;
}

/* Box für Datenschutzerklärung */
.daten-box, .content-impressum {
  margin: 5rem auto; /* Abstand von oben */
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9); /* Transparenter weißer Hintergrund */
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Schatten für visuelle Trennung */
  width: 90%;
  max-width: 1100px; /* Maximale Breite */
  position: relative;
  overflow: auto; /* Ermöglicht Scrollen innerhalb der Box */
}
  .logo-box .logo {
    max-width: 60%;
    height: auto;
    margin: 2rem auto;
    display: block;
  }
  
  .logo-box h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #003888; /* Farbe der Überschrift */
  }
  
  .info-box {
    display: flex;
    justify-content: center;
    gap: 3rem; /* Abstände zwischen den Spalten auf 3rem geändert */
    margin-bottom: 2rem;
  }
  
  .info-box .column {
    flex: 0 0 auto;
    text-align: left;
  }
  
  .info-box .column p {
    display: flex;
    align-items: flex-start;
    margin: 0.5rem 0;
  }
  
  .icon-wrapper {
    flex-shrink: 0;
    width: 20px;
    margin-right: 0.5rem;
  }
  
  .icon {
    width: 20px;
    height: 20px;
    fill: #5693c9; /* Farbe der Icons */
  }
  
  .text-wrapper {
    line-height: 1.5;
  }
  
  .footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.9rem;
  }
  
  .footer-links a {
    color: #5693c9; /* Farbe für Impressum und Datenschutz */
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .content {
      padding: 1.5rem;
      max-width: 90%;
    }
  
    .logo-box .logo {
      max-width: 70%;
    }
  
    .logo-box h1 {
      font-size: 1.5rem;
    }
  
    .info-box {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
  
    .info-box .column {
      text-align: center;
    }
  
    .footer-links {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }
  
  @media (max-width: 350px) {
    .logo-box .logo {
      max-width: 90%;
    }
  
    .logo-box h1 {
      font-size: 1.2rem;
    }
  
    .footer-links {
      font-size: 0.8rem;
    }
  }


  
.background-impressum {
    background-image: url('Dentalstudio_Tegernsee_Hintergrund-min.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .content-impressum {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1100px;
  }
  
  .impressum-box {
    max-width: 1100px;
  }
  
  @media (max-width: 768px) {
    .impressum-box {
      max-width: 830px; /* Breite auf kleineren Geräten */
    }
  }
  
  @media (max-width: 350px) {
    .impressum-box {
      width: 100%; /* Volle Breite auf kleinsten Geräten */
    }
  }
  
  .back-button {
    display: inline-block;
    text-decoration: none;
    background-color: #5693c9;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    position: absolute;
    top: 2rem;
    right: 2rem; /* Button rechts oben */
  }
  
  .back-button:hover {
    background-color: #417bb6;
  }
  
  
  .subline {
    font-size: 1.2rem;
    color: #5693c9;
    margin-bottom: 1rem;
  }
  
  .impressum-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
    text-align: center; /* Zentriert den Text */
  }
  
  .contact-link {
    color: #333; /* Farbe für die Links */
    text-decoration: none;
  }
  
  .contact-link:hover {
    text-decoration: underline; /* Unterstrich bei Hover */
  }
