* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #6366f1;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  h3 {
    font-size: 1.25rem;
  }
}

p {
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

.section-subtitle {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-primary {
  background-color: #6366f1;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #3438ed;
  color: white;
}

.btn-secondary {
  background-color: white;
  color: #333;
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  background-color: #f8f9fa;
}

.btn-outline {
  background-color: transparent;
  color: #6366f1;
  border: 1px solid #6366f1;
}

.btn-outline:hover {
  background-color: #6366f1;
  color: white;
}

.center-button {
  text-align: center;
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

@media (max-width: 768px) {
  .cookie-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
  }
}

.cookie-banner .cookie-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cookie-banner .cookie-content h2 {
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.cookie-banner .cookie-content p {
  margin-bottom: 0;
}

.cookie-banner .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .cookie-banner .cookie-buttons {
    margin-top: 1rem;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header {
  background-color: white;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
}

.header .logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #333;
}

.header .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

@media (max-width: 992px) {
  .header .main-nav ul {
    display: none;
  }
}

.header .main-nav li {
  position: relative;
}

.header .main-nav li a {
  font-weight: 500;
}

.header .main-nav li a:hover {
  color: #6366f1;
}

.header .mobile-menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .header .mobile-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header .mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .mobile-menu-toggle.active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}

.header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header .mobile-menu-toggle.active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 99;
  padding: 6rem 2rem 2rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.mobile-nav li a {
  font-size: 1.25rem;
  font-weight: 500;
}

.hero {
  background-color: #f5f5f5;
  background-image: url("./assets/1.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  max-width: 600px;
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .hero .hero-content {
    padding: 3rem 0;
    max-width: 100%;
  }
}

.hero .hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero .hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

@media (max-width: 576px) {
  .hero .hero-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.ausbildung {
  background-color: white;
}

.ausbildung .program-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .ausbildung .program-cards {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ausbildung .program-cards {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.ausbildung .program-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.ausbildung .program-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.ausbildung .program-card h3 {
  color: #6366f1;
  margin-bottom: 1rem;
}

.ausbildung .program-card p {
  margin-bottom: 0;
}

.wissensplattform {
  background-color: #f5f5f5;
}

.wissensplattform .platform-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.wissensplattform .platform-subtitle h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.wissensplattform .platform-topics {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .wissensplattform .platform-topics {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .wissensplattform .platform-topics {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.wissensplattform .platform-topics .topic h3 {
  color: #6366f1;
  margin-bottom: 0.5rem;
}

.wissensplattform .platform-topics .topic p {
  margin-bottom: 0;
}

.city-skyline {
  padding: 0;
  height: 400px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .city-skyline {
    height: 300px;
  }
}

.city-skyline .skyline-image {
  width: 100%;
  height: 100%;
}

.city-skyline .skyline-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.kundenstimmen {
  background-color: white;
}

.kundenstimmen .testimonials {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .kundenstimmen .testimonials {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .kundenstimmen .testimonials {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.kundenstimmen .testimonial {
  text-align: center;
}

.kundenstimmen .testimonial .testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

.kundenstimmen .testimonial .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.kundenstimmen .testimonial h3 {
  color: #6366f1;
  margin-bottom: 1rem;
}

.kundenstimmen .testimonial p {
  font-style: italic;
}

.contact {
  background-color: #f5f5f5;
}

.contact .contact-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .contact .contact-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.contact .contact-info h2 {
  text-align: left;
}

.contact .contact-info address {
  font-style: normal;
  line-height: 1.8;
}

.contact .contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact .contact-form .form-group input,
.contact .contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
}

.contact .contact-form .form-group input:focus,
.contact .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
}

.contact .contact-form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact .contact-form button {
  width: 100%;
}

.footer {
  background-color: #6366f1;
  color: white;
  padding: 2rem 0;
}

.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.footer .footer-links a {
  color: white;
}

.footer .footer-links a:hover {
  text-decoration: underline;
}

.success-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100vh - 200px);
  text-align: center;
}

.success-page .success-content h1 {
  margin-bottom: 1rem;
}

.success-page .success-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  body.menu-open {
    overflow: hidden;
  }
  .mobile-nav {
    display: none;
  }
  .mobile-nav.active {
    display: block;
  }
  .mobile-nav ul {
    margin-top: 2rem;
  }
  .mobile-nav li a {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
  }
  .mobile-nav li a:hover {
    background-color: #f5f5f5;
  }
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-nav.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body.menu-open .mobile-nav ul {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    padding: 1rem 0;
    -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  body.menu-open .mobile-nav ul li a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) and (max-width: 576px) {
  body.menu-open .mobile-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 1rem 0 2rem;
  }
}
/*# sourceMappingURL=style.css.map */