* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #e5e6e8;
    overflow: hidden;
}

body, #wrapper {
  overflow-x: hidden;         
  word-wrap: break-word;   
  overflow-wrap: anywhere;    
}

#wrapper .line {
    width: 100%;
    height: 7px;
    background: #ee7f00;
    position: relative;
}

#wrapper .small {
    font-size: 15px;
}

#wrapper .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#wrapper .logo a {
    color: #c5c7c9 !important;
    font-size: 19px;
}

#wrapper .line span:nth-of-type(1) {
    width: 25%;
    height: 100%;
    background: #008a2e;
    position: absolute;
    top: 0;
    left: 25%;
}

#wrapper .line span:nth-of-type(2) {
    width: 25%;
    height: 100%;
    background: #006456;
    position: absolute;
    top: 0;
    left: 50%;
}

#wrapper .line span:nth-of-type(3) {
    width: 25%;
    height: 100%;
    background: #95be09;
    position: absolute;
    top: 0;
    right: 0;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    margin-bottom: -175px;
}

#wrapper p {
    margin-bottom: 16px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    background-color: #ee7f00;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    padding: 10px 150px;
    border-radius: 50px;
    line-height: 1.3;
    font-family: "Arial", sans-serif;
    margin: 20px auto;
    text-align: center; 
    opacity: 90%;
}

#wrapper h1 .small {
    font-size: 0.7em;
    font-weight: 400;
    opacity: 0.9;
}

#wrapper h2 {
    color: #00675e;
    font-size: 16px;
    text-align: center;
    margin-top: -10px;
    font-style: italic
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #00675e;
        margin-left: 40px;

}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #ffffff;
    text-decoration: none;
}
    
#wrapper ul {
    margin: 0 0 20px 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
}

#wrapper ul li:before {
    content: "\2022";
    font-size: 23px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -1px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper .color a {
    color: blue;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr; /* zwei gleich breite Spalten */
  align-items: start;             /* beide Spalten oben ausrichten */
  margin: 40px 0;
  font-family: "Arial", sans-serif;
}

.two-col ul {
  list-style-type: disc; /* klassische Punkte */
  margin: 0;
}

.two-col li {
  font-size: 16px;
  color: #004f4f;
}

/* === 2-Spalten-Layout unten === */
.bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr; /* linke Spalte breiter */
  gap: 30px;
  align-items: start;
  margin-top: 40px;
  font-family: "Arial", sans-serif;
}


.bottom-section .left ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.bottom-section .left li {
  color: #004f4f;
    padding-bottom: 5px;

}

.bottom-section .left li::before {
  content: "" !important;
position: absolute !important;
  left: -10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 22px !important;
  height: 22px !important;
  background-image: url("icon-arrow.png") !important; /* Pfad anpassen */
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.bottom-section .right {
  text-align: center;
}

.apply-btn {
  display: inline-block;
  background-color: #ee7f00;
  color: #fff !important;
  font-weight: 700;
  font-size: 22px;
  padding: 20px 50px;
  border-radius: 60px;
  text-decoration: underline;
  margin-bottom: 20px;
}

.contact-card {
  background-color: #006b6b;
  color: #fff;
  border-radius: 50px;
  padding: 20px;
    bottom: -25px;
  text-align: left;
  position: relative;
      box-sizing: border-box;

}

.contact-card h4 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
}

.contact-card p {
  margin: 8px 0;
}

.contact-card .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-card .icon {
  font-size: 20px;
  line-height: 1;
}




.footer-bar {
  background-color: #006b6b;   /* Fuhrmann-Grün */
  color: #ffffff;
  text-align: center;
  padding: 25px 0;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  margin-top: 0;              /* kein Abstand nach oben */
}


/* ===========================
   Responsive: Tablets (bis 900px)
=========================== */
@media (max-width: 900px) {

  /* Wrapper & Layout */
  #wrapper {
    max-width: 95%;
  }

  #wrapper header {
    margin-bottom: -100px; /* weniger negativer Abstand */
  }

  /* Hauptüberschrift */
  #wrapper h1 {
    font-size: 24px;
    padding: 10px 60px;
  }

  /* Spaltenlayouts */
  .two-col {
    grid-template-columns: 1fr; /* Aufgaben & Profil untereinander */
    gap: 20px;
  }

  .bottom-section {
    grid-template-columns: 1fr; /* Warum + Kontakt untereinander */
      text-align-last: start;
  }

  /* Button */
  .apply-btn {
    font-size: 20px;
    padding: 15px 40px;
    margin-left: 20px;
      
  }

  /* Kontaktkarte */
  .contact-card {
    border-radius: 30px;
    text-align: center;
  }

  .contact-card .profile-pic {
    position: static;
    display: block;
    margin: 10px auto 0;
  }
}

 .contact-card {
    border-radius: 30px;
    text-align: left;       /* nicht zentriert – Text linksbündig */
    padding: 20px 25px;
  }

  .contact-card h4 {
    text-align: left;
  }

  .contact-card .profile-pic {
    position: absolute;     /* bleibt oben im Kasten */
    top: 20px;
    right: 25px;            /* etwas näher am Rand */
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
  }


/* ===========================
   Responsive: Tablets (bis 900px)
=========================== */
@media (max-width: 900px) {

  /* Wrapper & Layout */
  #wrapper {
    max-width: 95%;
  }

  #wrapper header {
    margin-bottom: -100px; /* weniger negativer Abstand */
  }

  /* Hauptüberschrift */
  #wrapper h1 {
    font-size: 24px;
    padding: 10px 60px;
  }

  /* Spaltenlayouts */
  .two-col {
    grid-template-columns: 1fr; /* Aufgaben & Profil untereinander */
    gap: 20px;
  }

  .bottom-section {
    grid-template-columns: 1fr; /* Warum + Kontakt untereinander */
      
  }

  /* Button */
  .apply-btn {
    font-size: 20px;
    padding: 15px 40px;
  }

  /* Kontaktkarte */
  .contact-card {
    border-radius: 30px;
    text-align: left; /* nicht zentriert – Text linksbündig */
    padding: 20px 25px;
  }

  .contact-card h4 {
    text-align: left;
  }
    
     .contact-card .profile-pic {
    position: static;
    margin-left: 0;
      margin-bottom: 10px;
 }
}
/* ===========================
   Responsive: Smartphones (bis 600px)
=========================== */
@media (max-width: 600px) {

  /* Grundlegende Typografie */
  body {
    font-size: 15px;
  }

  /* Header-Abstand */
  #wrapper header {
    margin-bottom: -60px;
  }

  /* Hauptüberschrift */
  #wrapper h1 {
    font-size: 20px;
    padding: 10px 30px;
  }

  /* Text & Listen */
  .two-col li,
  .bottom-section .left li {
    font-size: 15px;
  }

  /* Bewerbungs-Button */
  .apply-btn {
    font-size: 18px;
    padding: 12px 30px;
  }

  /* Kontaktkarte allgemein */
  .contact-card {
    font-size: 15px;
    padding: 15px 20px;
    text-align: left;
  }

  /* Überschrift linksbündig */
  .contact-card h4 {
    text-align: left;
  }

  /* Profilbild links unter dem Namen */
  .contact-card .profile-pic {
    position: static;
    margin-left: 0;
      margin-bottom: 10px;
 }

  /* Footer */
  .footer-bar {
    font-size: 13px;
    padding: 15px 0;
  }
}
