body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', Arial, sans-serif;
}

.header-section {
  width: 100%;
  font-family: 'Inter', Arial, sans-serif;
}

.header-top {
  background: #232e4c;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 60px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(20,40,80,0.95);
  border-bottom: 1px solid #223366;
}
.header-contact a, .header-contact span {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.header-contact i {
  color: #b61e79;
  font-size: 16px;
  margin-right: 4px;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-social-link {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  margin-left: 12px;
  transition: color 0.2s;
}
.header-social-link:hover {
  color: #b61e79;
}

.header-main {
  background: linear-gradient(90deg, #232e4c 0%, #5a4ca7 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 120px;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-logo img {
  height: 120px;
  margin-right: 18px;
}
.header-logo span {
  font-size: 36px;
  color: #fff;
  font-weight: 500;
}

.header-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav li {
  margin-left: 48px;
}
.header-nav a {
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.header-nav a:hover,
.header-nav .active > a {
  color: #fff;
  border-bottom: 2px solid #fff;
  text-decoration: none;
}

/* Social Icons (FontAwesome empfohlen) */
.header-social-link .fa {
  font-size: 22px;
}

/* Hamburgermenü Styles */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
}
.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  background: #fff;
  height: 4px;
  width: 30px;
  border-radius: 2px;
  position: absolute;
  left: 5px;
  transition: all 0.3s;
}
.menu-icon {
  top: 18px;
}
.menu-icon::before {
  content: '';
  top: -10px;
  position: absolute;
  width: 30px;
}
.menu-icon::after {
  content: '';
  top: 10px;
  position: absolute;
  width: 30px;
}

/* Menü für Mobilgeräte */
@media (max-width: 900px) {
  .header-top {
    padding: 0 20px;
  }
  .header-contact {
    gap: 16px;
  }
  .header-main {
    padding: 0 20px;
  }
  .header-nav li {
    margin-left: 24px;
  }
  .header-nav a {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .header-top {
    height: 30px;
    padding: 0 0 0 0;
    background: #232e4c;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100vw;
    min-width: 0;
    z-index: 2100;  
    display: none;}

  .header-contact {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0 0 0 8px;
    width: 100vw;
    background: #232e4c;
    border-bottom: none;
    margin-bottom: 0;
    font-size: 12px;
    min-height: 30px;
    height: 30px;
    display: none;
  }
  .header-contact a, .header-contact span {
    font-size: 12px;
    gap: 2px;
    line-height: 1.1;
    color: #fff;
    padding: 0 8px 0 0;
    background: transparent;
    border-radius: 0;
    height: 30px;
    display: none;
    align-items: center;
  }
  .header-contact i {
    font-size: 14px;
    margin-right: 2px;
    color: #b61e79;
    display:none;
  }
  .header-social {
    display: none;
  }
  .header-main {
    height: 50px;
    padding: 0 0 0 0;
    background: #232e4c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-width: 0;
  }
  .header-logo {
    height: 68px;
    margin-left: 8px;
    display: flex;
    align-items: center;
  }
  .header-logo img {
    height: 50px;
    margin-right: 4px;
  }
 .header-logo span {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
  }
  .header-lang {
    position: absolute;
    right: 54px;
    top: 0;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    z-index: 2002;
  }
  .menu-toggle {
    display: block !important;
    position: absolute;
    right: 10px;
    top: 2px;
    z-index: 2001;
    width: 36px;
    height: 36px;
  }
  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    width: 22px;
    height: 3px;
    left: 6px;
    background: #fff;
  }
  .menu-icon {
    top: 14px;
  }
  .menu-icon::before {
    top: -7px;
  }
  .menu-icon::after {
    top: 7px;
  }
  .menu {
    display: none;
    top: 66px; /* 30px Kontaktleiste + 36px Header */
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    background: #232e4c;
    z-index: 2000;
    padding: 20px 0;
    text-align: center;
  }
  .menu.open {
    display: block;
  }
  .menu ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .menu li {
    margin: 12px 0;
    list-style: none;
  }
  .menu a {
    font-size: 20px;
    padding: 8px 0;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
  }
  .menu a:hover {
    color: #b61e79;
  }
}

@media (max-width: 1600px) {
  .header-nav a {
    font-size: 20px;
    padding-bottom: 1px;
  }
  .header-nav li {
    margin-left: 24px;
  }
}

@media (max-width: 1400px) {
  .header-nav a {
    font-size: 16px;
    padding-bottom: 1px;
  }
  .header-nav li {
    margin-left: 12px;
  }
}

@media (max-width: 1200px) {
  .header-nav {
    display: none !important;
  }
  .menu-toggle {
    display: block !important;
    position: absolute;
    right: 10px;
    top: 2px;
    z-index: 2001;
    width: 36px;
    height: 36px;
  }
  .menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 66px; /* Höhe von header-top + header-main */
    width: 100vw;
    height: calc(100vh - 66px);
    background: #232e4c;
    z-index: 2000;
    padding: 20px 0;
    text-align: center;
    overflow-y: auto;
  }
  .menu.open {
    display: block;
  }
  .menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu li {
    margin: 0;
    padding: 0;
  }
  .menu a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    padding: 16px 0;
    display: block;
    transition: color 0.2s;
  }
  .menu a:hover {
    color: #b61e79;
  }
}
@media (min-width: 1201px) {
  .menu {
    display: none !important;
  }
  .menu-toggle {
    display: none !important;
  }
  .header-nav {
    display: flex !important;
  }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}




