body {
    background-color: #f3edca;
    padding: 0;
    margin: 0;
    font-size: clamp(14px, 1.6vw, 22px);
    font-family: 'Inter', system-ui, sans-serif;
}
*{
    box-sizing: border-box;
}
h1 {
    margin-top: 50px;
    color:#005138;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}
h2{
    text-shadow: 1px 1px 2px rgba(0,81,56,0.6);
}
.header img {
  width: 100%;
  object-fit: cover;
}
.sidebar {
    padding: 0;
    margin-top: 50px;
}
.sidebar li{
    list-style: none;
    margin-bottom: 10px;
}
.sidebar li img {
    width: 90%;
    filter: drop-shadow(0 4px 3px rgba(0,0,0,0.75));
}
.sidebar a {
    text-decoration: none;
}
.sidebar li img:hover{
    filter: drop-shadow(0 -4px 3px rgba(0,0,0,0.75));
	transform: translate(2px,-2px);
	transition-duration: 0.2s;
}
.sidebar ul {
    padding-left: 0;
}
.layout {
  display: flex;
}

.sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: fit-content;
}
.content {
    flex: 1;
    min-width: 0;
    padding: 20px;
    margin:0 3%;
}
table {
    width: 100%;
    table-layout: fixed; /* wichtig! */
}
/*------------------------------------------------------------------------------vorstellung----------------------------------------*/

.vorstellung td{
    box-shadow: none;
    text-align: left;
}
.wir img{
    width: 50%;
}
/*-------------------------------------------------------Leistungsbereiche--------------------------------------*/
td {
    width: 50%;
    /*vertical-align: top;*/
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.25);
    /*text-align:  center;*/
    vertical-align: middle;
    hyphens: auto;
    overflow-wrap: break-word;
}
td ul {
    padding: 30px;
}
td img {
    max-width: 100%;
    height: auto;
    display: block;
    margin:0 auto;
}
.mobile {
    display: none;
}
/*------------------------------------------------Referenzen------------------------------------------------------*/
.bereich {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.bereich img{
   max-width: 30%;
    height: auto;
}
/*-----------------------------------------------------footer-----------------------------------------------------*/
footer {
    background-color: #005138;
}
footer .bereich {
    align-items: center;
}
footer h3{
    margin-bottom: 0;
}
footer p {
    margin-top: 0;
}
footer a {
    color: black;
}
/*--------------------------------------------------------------------Kleine Desktop Ansicht------------------------------------------*/
@media (max-width: 1300px) {

    .bereich {
        flex-wrap: wrap;
    }

    .bereich img {
        max-width: 45%;
    }
}
/*-------------------------------------------------------------------Mobile Ansicht-------------------------------*/

@media (max-width: 912px) {
  .layout {
    flex-direction: column;
  }
    .mobile {
        display: block;
    }
    .desktop {
        display: none;
    }
  .sidebar, .vorstellung {
   display: none;
  }
.burger {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.content {
    flex: 1;
    padding: 20px;
    margin-left: 1%;
    margin-right: 1%;
}
   td ul {
    padding: 20px;
}
/* Menü */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background: #005138;

  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

/* Sichtbar */
.menu.active {
  transform: translateX(0);
}

/* Menü Inhalt */
.menu ul {
  list-style: none;
  padding: 60px 20px;
  margin: 0;
}

.menu li {
  margin-bottom: 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}
.bereich {
   flex-direction: column;     
    }
    footer {
        padding-bottom: 20px;
    }
     .bereich img {
        max-width: 100%;
    }
    
}