body {
  margin: 0;
  padding: 0;
  font-family: "Century Gothic", sans-serif;
  color: #000;
  background-color: #fff;
  font-weight: 400;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 800px;
  padding: 60px 20px;
  text-align: left;
}

h1 {
  font-size: 36px;
  font-weight: 400;
  color: #999;
  margin: 0;
  display: flex;
}

h1 .agentur {
  display: flex;
}

h1 .agentur span {
  margin-right: 4px; /* Fügt einen kleinen Abstand zwischen „Meyer____“ und „Agentur“ hinzu */
}

.vertretung {
  font-size: 18px;
  line-height: 1;
  margin-top: 40px;
  margin-left: 190px; /* Weiter nach rechts verschieben */
  margin-bottom: 15px;
}

.vertretung p {
  font-size: 18px;
  margin-bottom: 15px;
}

.laender {
  font-size: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.logo img {
  height: 80px;
}

.logo a.text-link {
  font-size: 18px;
  color: #000;
  text-decoration: none;
  margin-top: -7px;
}

.kontakt {
  font-size: 10px;
  line-height: 1;
  margin-bottom: 80px;
}

.email {
  margin-top: 10px;
}

.email a {
  text-decoration: none;
  color: #000; /* Setzt die Farbe auf Schwarz */
  font-size: 10px;
}

.sprachen {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 40px;
}

.sprachen a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bbb;
  border-radius: 50%;
  color: #666;
  text-decoration: none;
  font-size: 10px;
  font-weight: 400;
  transition: background-color 0.3s, color 0.3s;
}

.sprachen a:hover {
  background-color: #eee;
  color: #000;
}

.impressum-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.impressum-text a {
  color: #000;
  text-decoration: none;
}

.back-link {
  margin-top: 40px;
  text-align: center;
}

.back-link a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  border: 1px solid #bbb;
  border-radius: 20px;
  padding: 10px 20px;
  transition: background-color 0.3s;
}

.back-link a:hover {
  background-color: #f0f0f0;
}

.sprachen-impressum {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.sprachen-impressum a {
  color: #666; /* Die gleiche Farbe wie der Rest des Textes */
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  transition: color 0.3s;
}

.sprachen-impressum a:hover {
  color: #000; /* Leicht dunklerer Farbton beim Hover */
}

.kontakt-nummer {
    font-size: 10px; /* Einheitliche Schriftgröße */
}

.nummer {
    display: flex; /* Flexbox für horizontale Ausrichtung */
    align-items: center; /* Vertikale Ausrichtung der Elemente */
}

.prefix {
    margin-right: 8px; /* Abstand zwischen "T" und der Nummer */
    min-width: 15px; /* Stellen sicher, dass das "T" und "M" eine feste Breite haben */
}


/* Media Query für mobile Geräte */
@media (max-width: 768px) {
  body {
    font-size: 14px; /* Kleinere Schrift für kleinere Bildschirme */
  }

  .container {
    padding: 40px 15px; /* Weniger Innenabstand */
    max-width: 90%; /* Container weitet sich bis zu 90% des Bildschirms aus */
  }

  h1 {
    font-size: 28px; /* Kleinere Schriftgröße für die Überschrift */
    margin-bottom: 60px;
  }

  .vertretung {
    font-size: 16px; /* Kleinere Schrift für die Vertretung */
    margin-bottom: 40px; /* Weniger Abstand */
    margin-left: 130px; /* Weiter nach rechts verschieben */

  }

  .logo img {
    height: 60px; /* Logo wird kleiner */
  }

  .logo a.text-link {
    font-size: 16px; /* Kleinere Schrift für den Link */
  }

  .kontakt {
    margin-bottom: 60px;
  }*/

  .email a {
    font-size: 16px; /* Kleinere Schrift für die Email */
  }

  .sprachen-impressum {
    bottom: 10px; /* Die Sprachauswahl und der Impressum-Link rutschen etwas höher */
  }

  .sprachen-impressum a {
    font-size: 10px; /* Kleinere Schrift für den Impressum-Link */
  }
}


