* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Poppins", sans-serif;
  }
  
  header {
    background-image: url("Images/2.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
  }
  
  header h1 {
    font-size: 85px;
    margin-top: 180px;
    font-weight: 500;
  }
  
  header p {
    font-size: 20px;
    margin: 0.5rem 0;
  }
  
  header a.cta {
    background-color: #fff;
    border: 1px solid #333;
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 60px;
    margin-top: 1rem;
    transition: all 0.2s;
  }
  
  header a.cta:hover {
    background-color: #333;
    color: #fff;
    cursor: pointer;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 7%;
  }
  
  nav img {
    height: 100px;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 3rem 0;
  }
  
  section {
    width: 80%;
    text-align: center;
    margin: 2rem auto;
  }
  
  section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
  }
  
  .service {
    display: inline-block;
    width: 30%;
    padding: 0 1rem;
    margin-bottom: 2rem;
    box-sizing: border-box;
  }
  
  .service img {
    width: 200px; 
    margin-bottom: 1rem;
    border-radius: 50px;
  }
  
  .service h3 {
    margin-bottom: 1rem;
  }
  
  section form {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 4rem auto;
  }
  
  section input[type="text"],
  section input[type="email"],
  section textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: none;
    outline: none;
    background: #f2f2f2;
  }
  
  section button[type="submit"] {
    background-color: #686a77;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
  }
  
  footer {
    background-color: #686a77;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    text-align: center;
  }
  
  footer p {
    font-size: 1rem;
    margin: 0;
  }
  
  footer a {
    color: #fff;
    margin-left: 1rem;
    text-decoration: none;
  }
  
  @media only screen and (max-width: 600px) {
    header h1 {
        font-size: 50px;
    }
  
    nav {
        flex-direction: column;
        padding: 10px;
    }
  
    nav img {
        height: 80px;
    }
  
    .service {
        width: 90%; /* passt sich der Bildschirmbreite an */
        margin: 1rem auto;
    }
  
    section img {
        border-radius: 5px;
    }
  }
  
  .small-image {
    width: 50%; /* Passe den Prozentsatz oder px-Wert an */
    max-width: 600px; /* Maximale Breite */
    height: auto; /* Beibehaltung des Seitenverhältnisses */
    display: block; /* Sorgt dafür, dass das Bild als Block angezeigt wird */
    margin: 50px auto 0; /* Fügt einen oberen Abstand von 20px hinzu und zentriert das Bild */
  }
  