* {
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   -ms-box-sizing: border-box;
   box-sizing: border-box;
}

body {
  font-family: BarlowRegular;
  color: #101010;
  line-height: 1.6;
  background-color: white;
}


  .logo {
    height: 160px;
  }

  .headerContent {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    padding: 32px 0px 32px 0px;
    text-align: center;
  }

    h1 {
          font-size: 64px;
          font-weight: 700;
          line-height: 1.0;
          color: rgba(69, 113, 174, 1.0);
          font-family: Logo;
          letter-spacing: 2px;
        }

    .subline {
      margin-top: 16px;
    }

    .contactInfo {
      display: flex;
      margin-top: 4px;
      gap: 16px;
    }

        a {
          color: rgba(69, 113, 174, 1);
        }

        a:hover {
          color: rgba(69, 113, 174, 0.8);
        }

        a:active {
          color: rgba(69, 113, 174, 0.6);
        }

.contentWrapper {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

  .paragraph {
    margin-top: 32px;
  }

  .headlineImage {
    background-image: url("../assets/liga.jpg");
    background-size: cover;
    background-position: 50% 0%;
    color: white;

    width: 100%;
    height: 777px;
  }

  .image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

    .image-grid img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }


  .textGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    margin-bottom: 64px;
  }

  .textTile {
    width: 100%;
    padding: 16px 32px;
    border-radius: 4px;
    background-color: #eff1f1;
  }

  h2 {
    font-family: BarlowMedium;
    font-size: 30px;
    margin-bottom: 16px;
  }

  h3 {
    font-family: BarlowMedium;
    font-size: 20px;
    margin-bottom: 4px;
  }

    h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    color: var(--text-color, #333);
  }

  .tabelle {
    border-collapse: separate;
    border-spacing: 0 4px;
    margin-bottom: 2rem;
  }

  .tabelle td {
    padding-right: 20px;
    font-size: 1rem;
    vertical-align: top;
  }

  .list {
    line-height: 20px;
  }

  p {
    font-size: 16px;
    line-height: 1.6;
  }


  .footer {
    gap: 16px;
    padding: 16px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
  }