
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      color: #000000;
      background: linear-gradient(135deg, #91080865 0%, #1f4b8a 100%);
      scroll-behavior: smooth;
    }
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: weiß;
      border-bottom: 1px solid #eee;
      display: flex;
      justify-content: flex-end;
      padding: 1rem 3rem;
      z-index: 100;
      font-weight: 600;
    }
    nav a {
      text-decoration: none;
      color: #222;
      margin-left: 2rem;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      transition: color 0.3s ease;
    }
    nav a:hover {
      color: #b6148d;
    }

    header {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 1rem;
     
    }
    header h1 {
      font-weight: 600;
      font-size: 4rem;
      margin: 0;
      max-width: 800px;
      line-height: 1.1;
      color: #000000;
    }
    header p {
      font-weight: 300;
      font-size: 1.5rem;
      margin-top: 1rem;
      max-width: 600px;
      color: #080707;
    }
    main {
      max-width: 900px;
      margin: 3rem auto;
      padding: 0 1rem 4rem;
    }
    section {
      margin-bottom: 4rem;
    }
    h2 {
      font-weight: 600;
      font-size: 2rem;
      border-bottom: 2px solid #2F80ED;
      padding-bottom: 0.3rem;
      margin-bottom: 1.5rem;
    }
    p {
      font-weight: 300;
      line-height: 1.6;
      color: #000000;
      font-size: 1.1rem;
    }
    .services-list {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
      gap: 1.5rem;
    }
    .service-item {
      background: #f5f8ff;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
      font-weight: 300;
      color: #333;
      transition: transform 0.3s ease;
    }
    .service-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgb(0 0 0 / 0.1);
    }

    form {
      max-width: 500px;
      display: flex;
      flex-direction: column;
    }
    label {
      margin-bottom: 0.5rem;
      font-weight: 600;
      font-size: 1rem;
      color: #222;
    }
    input, textarea {
      padding: 0.7rem;
      font-size: 1rem;
      margin-bottom: 1.5rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      resize: vertical;
      font-family: 'Montserrat', sans-serif;
    }
    button {
      background-color: #2F80ED;
      border: none;
      color: weiß;
      padding: 0.75rem 1.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    button:hover {
      background-color: #1c5fdb;
    }
    footer {
      text-align: center;
      color: #888;
      padding: 1rem 0 2rem;
      font-size: 0.9rem;
      border-top: 1px solid #eee;
      max-width: 900px;
      margin: 0 auto;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2.5rem;
      }
      header p {
        font-size: 1.1rem;
      }
      nav {
        justify-content: center;
      }
      nav a {
        margin-left: 1rem;
        font-size: 0.85rem;
      }
    }
    .card-separator {
  width: 75%;
  height: 1px;
  background-color: #993c11;
  margin: 1.5rem auto;
}

.contact-section {
  padding: 2rem;
  background-color: #1f4b8a;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
  text-align: center;
  margin-top: 2rem;
}

.contact-section h2 {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000;
  border-bottom: 2px solid #0c0c0c;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.contact-section p {
  font-weight: 300;
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 1.5rem;
}

.contact-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-section li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.contact-section a {
  color: #2F80ED;
  text-decoration: none;
  font-weight: 600;
}

.contact-section a:hover {
  text-decoration: underline;
  color: #1c5fdb;
}



