/* Reset Browser-Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Grundstile für den Body */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8;
    color: #333;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header & Navigation */
  header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
  }
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  nav ul {
    display: flex;
    list-style: none;
  }
  nav li {
    margin: 0 15px;
  }
  nav a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1rem;
    transition: color 0.3s;
  }
  nav a:hover,
  nav a.active {
    color: #27ae60;
  }
  
  /* Mobile Menü Toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: #2c3e50;
    margin-bottom: 4px;
    border-radius: 2px;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    padding: 100px 0;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  .btn {
    background: #fff;
    color: #27ae60;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
  }
  .btn:hover {
    background: #f1f1f1;
  }
  
  /* Sections: Features & Content */
  .features, .content {
    padding: 60px 0;
  }
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .features .feature,
  .content .solution {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }
  .content h1 {
    margin-bottom: 20px;
    color: #2c3e50;
  }
  .content p {
    margin-bottom: 20px;
  }
  
  /* Kontaktformular */
  .contact form {
    display: grid;
    grid-gap: 15px;
  }
  .contact label {
    font-weight: bold;
  }
  .contact input,
  .contact textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
  }
  .contact button {
    background: #27ae60;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
  }
  .contact button:hover {
    background: #219150;
  }
  
  /* Footer */
  footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      display: none;
    }
    nav ul.active {
      display: flex;
    }
    .menu-toggle {
      display: flex;
    }
  }
  /* Logo Styling */
.logo img {
  max-height: 90px;  /* Passe die Höhe nach Bedarf an */
  display: block;
}
  