* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #f4f4f4;
  color: #1a1a1a;
}

/* CONTAINER */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP BAR */

.top-bar {
  background: #0b2a55;
  color: #fff;
  padding: 15px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area img {
  height: 90px;
  max-width: 100%;
}

/* LEGAL SECTION */

.legal-section {
  padding: 80px 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.legal-text h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #0b2a55;
  line-height: 1.2;
}

.legal-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.legal-image {
  display: flex;
  justify-content: center;
}

.legal-image img {
  width: 100%;
  max-width: 320px;
  border: 6px solid #3b2e7e;
  padding: 10px;
  background: #e5e5e5;
  margin-top: 35px;
}

/* BACK BUTTON */

.back-button-container {
  text-align: center;
  margin: 30px 0;
  padding: 0 20px;
}

.back-button-container button {
  background-color: #0b2a55;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.back-button-container button:hover {
  background-color: #003f7d;
}

/* FOOTER */

footer {
  background: #0b2a55;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* Sehr große Bildschirme (z.B. 27" / 4K) */
@media (min-width: 1600px) {

  .legal-text h1 {
    font-size: 1.8rem; /* kleiner als normale Desktop */
  }

  .legal-text p {
    font-size: 0.85rem; /* kleiner als normale Desktop */
  }
}

/* Tablet */
@media (max-width: 1024px) {

  .legal-section {
    padding: 60px 0;
  }

  .legal-grid {
    gap: 40px;
  }

  .legal-text h1 {
    font-size: 1.9rem;
  }

  .legal-image img {
    max-width: 240px;
  }
}

/* Großes Handy */
@media (max-width: 900px) {

  .legal-grid {
    grid-template-columns: 2fr 1fr;
    gap: 30px;
  }

  .legal-text h1 {
    font-size: 1.8rem;
  }

  .legal-image img {
    max-width: 200px;
  }
}

/* Handy */
@media (max-width: 600px) {

  .legal-section {
    padding: 50px 0;
  }

  .logo-area img {
    height: 70px;
  }

  .legal-grid {
    grid-template-columns: 2.5fr 1fr;
    gap: 20px;
  }

  .legal-text h1 {
    font-size: 1.5rem;
  }

  .legal-text p {
    font-size: 0.85rem;
  }

  .legal-image img {
    max-width: 120px;
    margin-top: 20px;
  }

  .back-button-container button {
    width: 100%;
    max-width: 280px;
  }

  footer {
    font-size: 0.75rem;
    padding: 15px 0;
  }
}

/* Sehr kleine Geräte */
@media (max-width: 400px) {

  .legal-text h1 {
    font-size: 1.3rem;
  }

  .legal-text p {
    font-size: 0.8rem;
  }

  .legal-image img {
    max-width: 90px;
  }
}