:root{
    --schrift: #666666;
    --hintergrund: #fff;
    --akzent1: #00a650;
    --akzent2: #00a650;
}

body {
  font-family: arial,sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--schrift);
  margin: 0;
  padding: 0 50px;
  background: var(--hintergrund);
  max-width: 1200px;
  margin: 20px auto;
  line-height: 1.4em;
  /* text-align: center; */
}

strong {
  font-weight: 700;
}

p {
  margin: 0 0 10px 0;
}

a {
  color: var(--akzent1);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: ease 0.3s;
}

a:hover{
  text-decoration-thickness: 2px;
}

h1{
  font-size: 40px;
  margin-bottom: 30px;
  line-height: normal;
  color: var(--akzent2);
  margin-top:60px;
}

h2{
  font-size: 26px;
  margin-bottom: 10px;
  line-height: normal;
  color: var(--akzent2);
}

img.logo{
  max-width: 200px;
  height: auto;
  margin-top: 40px;
}

img.banner{
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 30px 0;
  justify-content: flex-end;
}

ul li a {
  text-decoration: none;
  font-weight: bold;
  color: var(----schrift);
  padding-bottom: 4px;
}

ul li a:hover {
  border-bottom: 4px solid var(--akzent1);
}

.inhalt{
  text-align: left;
  max-width: 800px;
}

.box{
  border: 2px solid var(--akzent1);
  padding: 20px;
  margin: 10px 0;
}


.kontakt {
  border-top:1px dotted grey;
  padding: 30px 0 40px 0;
  border-bottom:1px dotted grey;
  float: left;
  margin:10px 0 0 0;
  width: 100%;
}
.footer{
  /* text-align: center; */
  font-size: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--akzent1);
  /* background: var(--akzent1); */
  /* color: var(--hintergrunds); */
  margin-top: 50px;
}

.button {
  border: 1px solid var(--akzent1);
  border-radius: 20px;
  background-color: var(--akzent1);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.button:hover {
  border: 1px solid var(--akzent1);
  border-radius: 20px;
  background-color: #fff;
  color:  var(--akzent1);
  text-decoration: none;
  padding: 10px 20px;
}

.quicklinks{
  /* text-align: center; */
  clear: both;
}


.quicklinks ul{
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
}

.quicklinks ul li{
  display: inline;
  margin: 0 10px 0 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  ul {
    flex-direction: column; /* untereinander */
    gap: 12px;
  }

  ul li a {
    display: inline-block;
    width: fit-content;
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}