@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/SpaceGrotesk/SpaceGrotesk-VariableFont_wght.woff2")
      format("woff2"),
    url("assets/fonts/SpaceGrotesk/SpaceGrotesk-VariableFont_wght.ttf")
      format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #fafafa;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 150px;
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: white;
}

header {
  text-align: center;
  margin-bottom: 80px;
}

.logo {
  max-width: 300px;
  height: auto;
}

main {
  flex: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

main h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 60px;
  line-height: 1.3;
}

.description {
  margin-bottom: 60px;
}

.description p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.contact-box {
  background-color: #02679f;
  color: white;
  padding: 40px 50px;
  margin-bottom: 80px;
}

.contact-box p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0;
}

.contact-box a {
  color: white;
  text-decoration: underline;
}

.contact-box a:hover {
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 30px 0;
  margin-top: auto;
}

footer a {
  color: #1a1a1a;
  text-decoration: underline;
  font-size: 1rem;
}

footer a:hover {
  text-decoration: none;
}

.imprint-section {
  max-width: 600px;
  text-align: left;
  margin: 0 auto;
}

.imprint-section h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1a1a1a;
  font-weight: 400;
}

.imprint-section h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 400;
}

.imprint-section p {
  margin-bottom: 25px;
  line-height: 1.8;
}

.imprint-section a {
  color: #5ba4d4;
  text-decoration: none;
}

.imprint-section a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
    padding-top: 80px;
  }

  .logo {
    max-width: 280px;
  }

  header {
    margin-bottom: 50px;
  }

  main h1 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .description p,
  .contact-box p {
    font-size: 1rem;
  }

  .contact-box {
    padding: 30px 25px;
    margin-bottom: 50px;
  }
}
