body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
  }
  
  .header {
    background: #000;
    color: #fff;
    padding: 20px 0;
  }
  
  .logo img {
    width: 150px;
  }
  
  .nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
  }
  
  .hero {
    background: url('/scheme_bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
  }
  
  .cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .services {
    display: flex;
    justify-content: space-around;
    background: #f5f5f5;
    padding: 50px 0;
  }
  
  .service-box {
    width: 30%;
  }
  
  .expertise {
    background: #eaeaea;
    padding: 50px 0;
    text-align: center;
  }
  .footer {
    background: #111;
    color: #fff;
    padding: 40px 0;
  }
  
  .footer-columns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .footer-column {
    width: 30%;
  }
  
  .footer-column h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer-column p {
    line-height: 1.6;
    font-size: 14px;
  }
  
  .footer-column a {
    color: #0096ff;
    text-decoration: none;
  }
  
  .footer-column a:hover {
    text-decoration: underline;
  }
  
  .footer-column ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #0096ff;
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  
  .footer-bottom a {
    color: #0096ff;
    margin: 0 5px;
    font-size: 12px;
  }
  
  .footer-bottom p {
    font-size: 12px;
    margin: 5px 0;
  }


  .impressum-section {
    padding: 20px;
    line-height: 1.6;
    font-size: 14px;
  }
  
  .impressum-section h1, .impressum-section h2 {
    color: #111;
    margin-top: 20px;
  }
  
  .impressum-section p {
    margin-bottom: 10px;
  }
  
  .impressum-section a {
    color: #0096ff;
    text-decoration: none;
  }
  
  .impressum-section a:hover {
    text-decoration: underline;
  }
  
  .impressum-section h3 {
    margin-top: 15px;
  }
  