.maintenance-note {
  margin-top: 1em;
  font-style: italic;
  color: #cc0000;
  text-align: center;
  font-size: 50px;
}
:root {
      --primary-color: #e30613;
      --secondary-color: #333;
      --light-gray: #f5f5f5;
      --dark-gray: #222;
      --text-color: #333;
      --text-light: #777;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Roboto', sans-serif;
      color: var(--text-color);
      line-height: 1.6;
      background-color: #fff;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    /* Header */
    header {
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }
    
    .logo {
      height: 100px;
    }
    
    .logo img {
      height: 100%;
    }

    .logo-schmitt{
        height: 300px;
        align-items: center;
        
    }

    .logo-schmitt img{
        height: 100%;
        align-items: center;

    }
    
    nav ul {
      display: flex;
      list-style: none;
    }
    
    nav ul li {
      margin-left: 30px;
    }
    
    nav ul li a {
      text-decoration: none;
      color: var(--secondary-color);
      font-weight: 500;
      font-size: 16px;
      transition: color 0.3s;
      position: relative;
    }
    
    nav ul li a:hover {
      color: var(--primary-color);
    }
    
    nav ul li a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: var(--primary-color);
      bottom: -5px;
      left: 0;
      transition: width 0.3s;
    }
    
    nav ul li a:hover:after {
      width: 100%;
    }
    
    /* Hero Section */
    .hero {
      background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/hero-bagger.jpg');
      background-size: cover;
      background-position: center;
      height: 50vh;
      display: flex;
      align-items: center;
      margin-top: 80px;
    }
    
    .hero-content {
      color: #fff;
      max-width: 600px;
    }
    
    .hero h1 {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .hero p {
      font-size: 18px;
      margin-bottom: 30px;
    }
    
    .btn {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 30px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 500;
      transition: background-color 0.3s;
    }
    
    .btn:hover {
      background-color: #c00511;
    }
    
    /* About Section */
    .about {
      padding: 80px 0;
      background-color: var(--light-gray);
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .section-title h2 {
      font-size: 36px;
      color: var(--secondary-color);
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
    }
    
    .section-title h2:after {
      content: '';
      position: absolute;
      width: 60px;
      height: 3px;
      background: var(--primary-color);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .about-content {
      display: flex;
      align-items: center;
      gap: 50px;
    }
    
    .about-text {
      flex: 1;
    }
    
    .about-text h3 {
      font-size: 24px;
      margin-bottom: 20px;
      color: var(--secondary-color);
    }
    
    .about-image {
      flex: 1;
    }
    
    .about-image img {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Services Section */
    .services {
      padding: 80px 0;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .service-card {
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
    }
    
    .service-img {
      height: 200px;
      overflow: hidden;
    }
    
    .service-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .service-card:hover .service-img img {
      transform: scale(1.1);
    }
    
    .service-content {
      padding: 25px;
    }
    
    .service-content h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: var(--secondary-color);
    }
    
    .service-content p {
      color: var(--text-light);
      margin-bottom: 20px;
    }
    
    /* Contact Section */
    .contact {
      padding: 80px 0;
      background-color: var(--light-gray);
    }
    
    .contact-container {
      display: flex;
      gap: 50px;
    }
    
    .contact-info {
      flex: 1;
    }
    
    .contact-info h3 {
      font-size: 24px;
      margin-bottom: 20px;
      color: var(--secondary-color);
    }
    
    .contact-details {
      margin-bottom: 30px;
    }
    
    .contact-details p {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }
    
    .contact-details i {
      margin-right: 10px;
      color: var(--primary-color);
    }
    
    .contact-form {
      flex: 1;
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }
    
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-family: 'Roboto', sans-serif;
    }
    
    .form-group textarea {
      height: 150px;
    }
    
    /* Footer */
    footer {
      background-color: var(--dark-gray);
      color: #fff;
      padding: 50px 0 20px;
    }
    
    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .footer-col h3 {
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-col h3:after {
      content: '';
      position: absolute;
      width: 40px;
      height: 2px;
      background: var(--primary-color);
      bottom: 0;
      left: 0;
    }
    
    .footer-col ul {
      list-style: none;
    }
    
    .footer-col ul li {
      margin-bottom: 10px;
    }
    
    .footer-col ul li a {
      color: #bbb;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-col ul li a:hover {
      color: #fff;
    }
    
      /* Content-Bereich */
    .legal-content {
      padding: 120px 0 80px;
    }
    
    .legal-container {
      background-color: #fff;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .legal-title {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .legal-title h1 {
      font-size: 36px;
      color: var(--secondary-color);
      position: relative;
      padding-bottom: 15px;
    }
    
    .legal-title h1:after {
      content: '';
      position: absolute;
      width: 60px;
      height: 3px;
      background: var(--primary-color);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .legal-section {
      margin-bottom: 30px;
    }
    
    .legal-section h2 {
      font-size: 22px;
      color: var(--secondary-color);
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 1px solid #eee;
    }
    
    .legal-section p {
      margin-bottom: 15px;
    }
    
    .legal-section ul {
      margin-left: 20px;
      margin-bottom: 15px;
    }
    
    /* Footer-Stile gleich wie Hauptseite */
    footer {
      background-color: var(--dark-gray);
      color: #fff;
      padding: 50px 0 20px;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .legal-content {
        padding: 100px 0 50px;
      }
      
      .legal-container {
        padding: 25px;
      }
    }

    .copyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #444;
      color: #bbb;
      font-size: 14px;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .header-container {
        flex-direction: column;
      }
      
      nav ul {
        margin-top: 20px;
      }
      
      nav ul li {
        margin-left: 15px;
        margin-right: 15px;
      }
      
      .hero {
        height: auto;
        padding: 100px 0;
      }
      
      .hero h1 {
        font-size: 32px;
      }
      
      .about-content,
      .contact-container {
        flex-direction: column;
      }
      
      .about-image {
        margin-top: 30px;
      }
    }