*{
    margin: 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
    cursor: default;
}

body{
    margin: 0;
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: center;
}



.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d0d0d;
}

.glow {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: top 0s, left 0s;
}




.content{
    width: 1200px;
    color: white;
    z-index: 1;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background-color: #0d0d0d;
}

.inner-header{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
}

.branding{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-placeholder{
    height: 50px;
    width: 50px;
}

.site-title{
    font-size: 22px;
    font-weight: bold;
    width: 125px;
}

.menu{
    display: flex;
    gap: 10px;
    padding: 4px;
}

#menu{
    display: none;
}

.menu-item {
  display: inline-block;
  width: auto;           /* behält individuelle Breiten */
  padding: 3px 7px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: transparent;       /* unsichtbar im Normalzustand */
  border-radius: 5px;
  box-shadow: none;                    /* kein Schatten standardmäßig */
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  color: white;
  cursor: pointer;

  transition: 
    background-color 0.2s ease,       /* sanftes Einblenden */
    box-shadow 0.2s ease,              /* sanftes Einblenden des Schattens */
    transform 0.1s ease;               /* für Klick-Animation */
}

.menu-termin{
    background-color: #00CFFF;
    color: black;
    box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.menu-item:hover {
  background-color: #00CFFF;
  color: black;
  box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.menu-item:active {
  transform: translateY(1px) translateX(1px);          /* nach unten drücken */
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5); /* reduzierter Schatten */
}


.small-screen{
    display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 30%;
  height: 100vh;
  background-color: #0d0d0d;
  transition: right 0.5s ease-in-out;
  padding: 2rem;
  z-index: 1001;
  box-shadow: 0 0 15px #00CFFF;
  border-radius: 10px;
  margin-top: 80px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  margin: 10px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  font-size: 1.2rem;
}


@media screen and (max-width: 1080px) {

    .inner-header{
        flex-direction: row;
        justify-content: space-between;
        padding: 0 50px;
        align-items: center;
    }

    .menu{
        display: none;
    }

    .small-screen{
        display: block;
    }

    .icons{
        width: 40px;
    }
}

/* Responive Menu */
@media screen and (max-width: 925px) {
  .mobile-menu {
    position: fixed;
    top: 80px; /* Höhe des Headers */
    right: -110%; /* Startposition komplett rechts draußen */
    width: 90%;
    height: calc(100vh - 100px);
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 0 15px #00CFFF;
    z-index: 1001;
    background-color: #0d0d0d;
    transition: right 0.5s ease-in-out;
    transform: translateX(50%);
  }

  /* Offen: mittig platzieren */
  .mobile-menu.open {
    right: 50%; /* rechte Kante auf Bildschirmmitte */
  }

  .mobile-menu ul {
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .mobile-menu ul li a {
    font-size: 1.5rem;
    text-align: center;
  }
}

/* Responive Menu */
@media screen and (max-width: 680px){
    .mobile-menu{
        width: 80%;
    }
}

.home{
    padding-top: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 900px;
    position: relative;
    left: 50%;
    translate: -50%;
    height: calc(100vh - 240px);
}

.fly-in {
  opacity: 0;
  transform: translateY(10px);
  animation: flyIn 1s ease-out forwards;
}

/* Keyframes für die Bewegung */
@keyframes flyIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home h1{
    font-size: 70px;
    text-align: center;
}

.home h1 span{
    color: #00CFFF;
}

.home p{
    font-size: 26px;
    text-align: center;
    color: #ccc;
    margin-top: 40px;
}

.home-buttons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 5px 5px;
    margin-top: 60px;
}

.auditbutton{
    font-size: 20px;
    border-radius: 8px;
    padding: 18px 20px;
    border: 2px solid #00cfff;
    background-color: #00CFFF;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 0 8px rgb(255, 255, 255, 0.9);
    text-decoration: none;
    color: #0d0d0d;
}

.auditbutton:hover{
    transform: translateY(3px);
}

.auditbutton:active{
    box-shadow: 0 0 15px rgb(255, 255, 255, 0.9);
}

.terminbutton{
    font-size: 20px;
    border-radius: 8px;
    padding: 18px 20px;
    border: 2px solid #00cfff;
    background-color: #0d0d0d;
    color: #00CFFF;
    text-decoration: none;
    text-align: center;
}

.terminbutton:hover{
    background-color: #00CFFF;
    color: black;
}

.terminbutton:active{
    box-shadow: 0 0 15px rgb(255, 255, 255, 0.9);
}


/* Responsive Home */
@media screen and (max-width: 925px){
    .home{
        padding-top: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 550px;
        position: relative;
        left: 50%;
        translate: -50%;
    }

    .home h1{
        font-size: 50px;
        text-align: center;
    }

    .home h1 span{
        color: #00CFFF;
    }

    .home p{
        font-size: 20px;
        text-align: center;
        color: #ccc;
        margin-top: 40px;
    }

    .home-buttons{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        padding: 5px 5px;
        margin-top: 50px;
    }

    .auditbutton{
        font-size: 16px;
        border-radius: 8px;
        padding: 18px 20px;
        border: 2px solid #00cfff;
        background-color: #00CFFF;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s ease;
        box-shadow: 0 0 8px rgb(255, 255, 255, 0.9);
    }

    .terminbutton{
        font-size: 16px;
        border-radius: 8px;
        padding: 18px 20px;
        border: 2px solid #00cfff;
        background-color: #0d0d0d;
        color: #00CFFF;
    }
}

/* Responsive Home */
@media screen and (max-width: 680px){
    .inner-header{
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
        align-items: center;
    }

    .menu{
        display: none;
    }

    .small-screen{
        display: block;
    }

    .icons{
        width: 30px;
    }
    
    .logo-placeholder{
        height: 30px;
        width: 30px;
    }

    .site-title{
        font-size: 22px;
        font-weight: bold;
    }

    .home{
        padding-top: 110px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 320px;
        position: relative;
        left: 50%;
        translate: -50%;
    }

    .home h1{
        font-size: 40px;
        text-align: center;
    }

    .home h1 span{
        color: #00CFFF;
    }

    .home p{
        font-size: 20px;
        text-align: center;
        color: #ccc;
        margin-top: 30px;
    }

    .home-buttons{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 5px 5px;
        margin-top: 40px;
    }

    .auditbutton{
        font-size: 16px;
        border-radius: 8px;
        padding: 18px 20px;
        border: 2px solid #00cfff;
        background-color: #00CFFF;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s ease;
        box-shadow: 0 0 8px rgb(255, 255, 255, 0.9);
    }

    .auditbutton:hover{
        transform: translateY(3px);
    }

    .terminbutton{
        font-size: 16px;
        border-radius: 8px;
        padding: 18px 20px;
        border: 2px solid #00cfff;
        background-color: #0d0d0d;
        color: #00CFFF;
    }

    .terminbutton:hover{
        background-color: #00CFFF;
        color: black;
    }
}

.services{
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    position: relative;
    left: 50%;
    translate: -50%;
}

.services h1{
    font-size: 60px;
    text-align: center;
}

.service-subtitle{
    font-size: 26px;
    text-align: center;
    color: #ccc;
    margin-top: 30px;
    width: 90%;
}

.service-blocks{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.service-blocks img{
    width: 40px;
    height: 40px;
}

.service{
    width: 210px;
    border: 2px solid #555555;
    background-color: #222222;
    border-radius: 10px;
    padding: 15px;
    height: 420px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.service:hover{
    border: 2px solid #00CFFF;
    box-shadow: 0 0 10px #00CFFF;
    cursor: default;
}

.service h3{
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
}

.service-p{
    margin-top: 10px;
    font-size: 20px;
}

.service ul{
    margin-top: 10px;
    text-align: left;
    padding-left: 1em;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
    color: #ccc;
    opacity: 0.25;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.service:hover ul{
    opacity: 1;
    color: #00CFFF;
}

.services-entdecken{
    text-decoration: none;
    color: #00CFFF;
    margin-top: 50px;
    font-size: 20px;
    margin-bottom: 50px;
}

@media screen and (max-width: 925px){
    .service{
        height: 320px;
    }

    .services h1{
        font-size: 45px;
    }

    .service-subtitle{
        font-size: 20px;
    }

    .service h3{
        font-size: 18px;
    }

    .service-p{
        font-size: 16px;
    }

    .service ul{
        font-size: 14px;
    }

    .services-entdecken{
        font-size: 18px;
    }
}

@media screen and (max-width: 680px){
    .services h1{
        font-size: 30px;
    }

    .service-subtitle{
        font-size: 18px;
    }

    .services{
        margin-top: 100px;
    }
}

.case-study{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
    width: 90%;
    position: relative;
    left: 50%;
    translate: -50%;
    margin-bottom: 100px;
}

.case-study-text{
    width: 50%;
}

.case-study-text-box h2{
    padding-top: 100px;
    font-size: 18px;
    color: #00CFFF;
}

.case-study-text-box h1{
    margin-top: 20px;
    font-size: 32px;
    width: 100%;
}

.case-study-text-p{
    margin-top: 10px;
    font-size: 20px;
    color: #ccc;
}

.case-study-picture{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 7%;
    border-radius: 15px;
    box-shadow: 0 0 5px #00CFFF;
    background-color: #2e2e2e;
}

.case-study-picture img{
    padding: 30px;
    border-radius: 15px;
    width: 400px;
    height: 250px;
}

.kpi-box{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.kpis{
    width: 40%;
}

.kpi-number{
    font-size: 26px;
    color: lightgreen;
    font-weight: 700;
}

.kpi-text{
    font-size: 16px;
    color: #ccc;
}

.case-study-button1{
    margin-top: 30px;
    font-size: 18px;
    border-radius: 8px;
    padding: 10px 15px;
    border: 2px solid #00cfff;
    background-color: #00CFFF;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 0 8px rgb(255, 255, 255, 0.9);
}

.case-study-button1:hover{
    transform: translateY(3px);
}

.case-study-text2-box h2{
    margin-top: 50px;
    font-size: 18px;
    color: #00CFFF;
}

.case-study-text2-box h1{
    margin-top: 20px;
    font-size: 32px;
    width: 100%;
}

.case-study-button2{
    margin-top: 30px;
    font-size: 18px;
    border-radius: 8px;
    padding: 10px 15px;
    border: 2px solid #00cfff;
    background-color: #00CFFF;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 0 8px rgb(255, 255, 255, 0.9);
}

.case-study-button2:hover{
    transform: translateY(3px);
}

@media screen and (max-width: 1190px) {
  .case-study {
    flex-direction: column;
    align-items: center;      /* zentriert Text UND Bild horizontal */
    justify-content: center;  /* falls Höhe relevant wird */
    text-align: center;       /* zentriert Text */
  }

  .case-study-picture {
    margin-left: 0;       /* überschreibt das 7% */
    margin-top: 30px;     /* etwas Luft nach oben, falls nötig */
    padding: 30px;        /* sorgt dafür, dass Bild immer gleichen Abstand hat */
  }

  .case-study-picture img {
    padding: 0;           /* da padding jetzt im Container sitzt */
    max-width: 100%;      /* Bild skaliert sauber */
    width: 400px;
    height: 250px;        /* Höhe passt sich an */
    }

  .case-study-text {
    width: 80%;              /* volle Breite nutzen */
    margin: 0 auto;           /* mittig halten */
  }

    .kpi-box {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 220px); /* fixe Spaltenbreite, Beispiel */
    column-gap: 30px;                        /* fixer Spaltenabstand */
    row-gap: 30px;

    /* Diese drei Zeilen sorgen fürs echte Zentrieren der gesamten Box */
    width: max-content;       /* schrumpft auf Summe(Spalten + Gaps) */
    margin-left: auto;        /* zentriert horizontal */
    margin-right: auto;
    /* alternativ: margin: 30px auto 0; */
    }

    .kpis {
    width: auto; 
    min-width: 150px;         /* falls gewünscht; kann auch weg */
    text-align: center;
    }
}

@media screen and (max-width: 680px) {
  .kpi-box {
    grid-template-columns: 1fr;  /* untereinander */
    column-gap: 0;               /* kein Spaltenabstand nötig */
    row-gap: 20px;               /* etwas kleinerer Zeilenabstand */
    width: 100%;                 /* NICHT mehr max-content, damit nichts übersteht */
    margin-left: 0;
    margin-right: 0;
    justify-items: center;       /* Inhalte in der Spalte mittig */
    /* optional, falls der Parent text-align: center braucht, kannst du’s hier lassen */
  }

  .kpis {
    width: 100%;
    max-width: 320px;            /* opt. feste max-Breite für schöne Zeilenlänge */
    box-sizing: border-box;      /* falls Innenabstände dazukommen */
    text-align: center;
  }
}

@media screen and (max-width: 580px){
    .case-study-picture img {
      width: 240px;
      height: 150px;        /* Höhe passt sich an */
    }

    .case-study-text-box h2{
        font-size: 15px;
    }

    .case-study-text2-box h2{
        font-size: 15px;
    }

    .case-study-text-box h1{
        font-size: 22px;
    }

    .case-study-text2-box h1{
        font-size: 22px;
    }

    .case-study-text-p{
        font-size: 17px;
    }

    .kpi-number{
        font-size: 20px;
    }

    .kpi-text{
        font-size: 14px;
    }

}


/* Overlay, das NUR den Hintergrund blur’t (Modal bleibt scharf) */
.modal-overlay[hidden] { display: none; }
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .2s ease;
}
.modal-overlay.is-visible { opacity: 1; }

/* Modals oben drüber */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 3001;
  display: grid;
  place-items: center;
  padding: 24px;
  padding: 24px;
  display: grid;
  place-items: center;
}

/* Panel (Fenster) */
.modal__panel {
  width: 900px;
  max-width: 1100px;
  max-height: 80vh;
  overflow: auto;
  background: #222222;
  border: 1px solid #444;
  border-radius: 12px;
  box-shadow: 0 0 20px #00CFFF;
  padding: 30px 35px;
  color: #fff;
  cursor: default;
  box-sizing: border-box;
}

/* Kleine Screens: Modal anpassen */
@media screen and (max-width: 1000px) {
  .modal {
    padding: 0;                   /* verhindert seitliches "Abschneiden" */
  }

  .modal__panel { 
    width: 90vw;                  /* wirklich 90% der Viewport-Breite */
    max-width: none;              /* kein Limit blockiert die 90vw */
    margin: 0;                    /* Zentrierung übernimmt das Grid */
  }
}

/* Close-Button oben rechts */
.modal__close {
  position: sticky;
  top: 0;
  float: right;
  margin-left: auto;
  display: inline-block;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #bbb;
}
.modal__close:hover { color: #fff; }

/* Body/HTML bei offenem Modal nicht scrollbar */
html.no-scroll, body.no-scroll { overflow: hidden; }

.modal__panel h2{
    font-size: 26px;
    width: 90%;
}

.modal__panel h3{
    padding-top: 25px;
    color: #00CFFF;
}

.modal__panel p{
    font-size: 18px;
    padding-top: 5px;
}

.modal__panel ul{
    padding-left: 2em;
}

.modal__panel h5{
    padding-top: 20px;
    font-size: 12px;
    color: #bbb;
}

.modal__panel h5 a{
    color: #bbb;
}

@media screen and (max-width: 550px) {
    .modal__panel h2{
        font-size: 20px;
    }

    .modal__panel h3{
        font-size: 19px;
        padding-top: 15px;
    }

    .modal__panel p{
        font-size: 14px;
    }
}

hr{
    border: none;              /* Standardrahmen entfernen */
    border-top: 2px solid #333; /* eigene Linie */
    margin: 20px 0;            /* Abstand: oben 40px, unten 40px */
}

.kpi-box-modal{
    margin-top: 5px;
    display: grid;
    grid-template-columns: repeat(2, 230px);
    padding-bottom: 10px;
    gap: 10px;
    column-gap: 20px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;

}

.kpi-box-modal p.kpi-number-modal{
    padding: 0;
    font-size: 20px;
    color: lightgreen;
    font-weight: 600;
}

.kpi-box-modal p.kpi-text-modal{
    padding: 0;
    font-size: 14px;
    color: #ccc;
}

.kpis-modal{
    text-align: center;
    padding: 12px 0;
    background-color: #0d0d0d;
    border-radius: 10px;
}

@media screen and (max-width: 615px) {
    .kpi-box-modal p.kpi-number-modal{
        font-size: 16px;
    }

    .kpi-box-modal p.kpi-text-modal{
        font-size: 12px;
    }

    .kpi-box-modal{
        grid-template-columns: repeat(2, 200px);
        column-gap: 10px;
    }
}

@media screen and (max-width: 535px) {
  .kpi-box-modal {
    grid-template-columns: 1fr;  /* untereinander */
    column-gap: 0;               /* kein Spaltenabstand nötig */
    row-gap: 10px;               /* etwas kleinerer Zeilenabstand */
    width: 100%;                 /* NICHT mehr max-content, damit nichts übersteht */
    margin-left: 0;
    margin-right: 0;
    justify-items: center;       /* Inhalte in der Spalte mittig */
    /* optional, falls der Parent text-align: center braucht, kannst du’s hier lassen */
  }

  .kpis-modal {
    width: 100%;
    max-width: 200px;            /* opt. feste max-Breite für schöne Zeilenlänge */
    box-sizing: border-box;      /* falls Innenabstände dazukommen */
    text-align: center;
  }
}

.modal-footer{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.modal-footer h5{
    font-size: 26px;
    color: white;
    padding: 0;
}

.modal-footer p{
    font-size: 18px;
    color: #bbb;
    padding-top: 12px;
    padding-bottom: 20px;
}

.modal-footer-button{
    font-size: 20px;
    font-weight: 600;
    border-radius: 7px;
    background-color: #00CFFF;
    border: none;
    margin: auto;
    padding: 10px;
    text-decoration: none;
    color: #0d0d0d;
}

@media screen and (max-width: 600px) {
    .modal-footer h5{
        font-size: 20px;
    }

    .modal-footer p{
        font-size: 14px;
    }

    .modal-footer-button{
        font-size: 16px;
        padding: 10px 5px;
    }
}

@media screen and (max-width: 425px) {
    .modal-footer-button{
        padding: 7px 3px;
        border-radius: 5px;
    }
}

.uber-uns{
    display: flex;
    flex-direction: column;
    padding-top: 120px;
    justify-content: center;
    align-items: center;
}

.uber-uns-titel{
    text-align: center;
}

.uber-uns-titel h1{
    font-size: 60px;
}

.uber-uns-titel p{
    font-size: 26px;
    text-align: center;
    color: #ccc;
    margin-top: 30px;
    padding: 0 20px;
}

.auftrag-arbeiten{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    padding-top: 50px;
    gap: 40px;
    margin: auto;
    width: 85%;
}

.auftrag, .arbeiten{
    width: 460px;
    padding: 15px 15px;
    background-color: #2e2e2e;
    border-radius: 15px;
    box-shadow: inset 0 0 15px #444;
}

.auftrag-titel, .arbeiten-titel{
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 10px;
}

.auftrag-satz1, .auftrag-satz2,
.arbeiten-satz1, .arbeiten-satz2{
    font-size: 22px;
    line-height: 26px;
}

.arbeiten ul{
    padding: 5px 0;
    padding-left: 1.5em;
    font-size: 18px;
    line-height: 26px;
}

.auftrag-arbeiten span{
    font-weight: 700;
    color: #80EFFF;
}

.wer-wir-sind{
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 50px;
    margin: auto;
    width: 85%;
}

.arthur-photo{
    width: 270px;
    height: 375px;
    border-radius: 15px;
}

.arian-photo{
    width: 275px;
    height: 365px;
    border-radius: 15px;
}

.arthur, .arian{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #2e2e2e;
    border-radius: 15px;
    padding: 15px 15px;
    margin: auto;
    align-items: center;
    box-shadow: inset 0 0 15px #444;
    gap: 20px;
}

.arthur-text, .arian-text{
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 70%;
}

.arthur-text p, .arian-text p{
    font-size: 28px;
    font-weight: 700;
}

.arthur-text ul, .arian-text ul{
    font-size: 22px;
    padding-left: 1em;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prinzipien{
    padding-top: 50px;
    width: 85%;
}

.prinzipien-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    background-color: #2e2e2e;
    box-shadow: inset 0 0 15px #444;
    border-radius: 15px;
}

.prinzipien-content h1{
    font-size: 28px;
}

.prinzipien-content ul{
    font-size: 22px;
    padding-top: 8px;
    padding-left: 1em;
}

.prinzipien-content li{
    font-weight: 700;
    padding-top: 10px;
}

.versprechen{
    padding: 50px;
    text-align: center;
}

.versprechen h1{
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 20px;
}

.versprechen-satz1, .versprechen-satz2{
    font-size: 22px;
}

@media screen and (max-width: 1200px) {
    .arbeiten, .auftrag{
        width: 85%;
    }
}

@media screen and (max-width: 1095px) {
    .arthur, .arian{
        box-shadow: none;
        background: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px 0;
    }

    .arian{
        flex-direction: column-reverse;
    }

    .arthur-text, .arian-text{
        background-color: #2e2e2e;
        box-shadow: inset 0 0 15px #444;
        border-radius: 15px;
        width: 85%;
        padding: 15px;
    }

    .arthur-text p, .arian-text p{
        text-align: center;
    }

}

@media screen and (max-width: 925px) {

    .uber-uns-titel h1{
        font-size: 45px;
    }

    .uber-uns-titel p{
        font-size: 20px;
        margin-top: 15px;
    }

    .auftrag-titel, .arbeiten-titel{
        font-size: 22px;
    }

    .auftrag-satz1, .auftrag-satz2,
    .arbeiten-satz1, .arbeiten-satz2, .arbeiten ul{
        font-size: 18px;
    }

    .arian-photo, .arthur-photo{
        width: 175px;
        height: 240px;
    }

    .arthur-text p, .arian-text p{
        font-size: 22px;
    }

    .arthur-text ul, .arian-text ul{
        font-size: 18px;
    }

    .prinzipien-content h1{
        font-size: 22px;
    }

    .prinzipien-content ul{
        font-size: 18px;
    }

    .versprechen h1{
        font-size: 22px;
    }

    .versprechen-satz1, .versprechen-satz2{
        font-size: 18px;
    }
}




.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.angaben{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.angaben a{
    text-decoration: none;
    color: white;
}

.links{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: -10px;
}

@media screen and (max-width: 700px) {
    .footer{
        flex-direction: column-reverse;
        justify-content: center;
        gap: 20px;
    }
}