      :root {
          --primary: #69b53f; /* Dein Linux-Grün */
          --dark: #2c3e50;
          --light: #f8f9fa;
      }
      body { font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.6; color: var(--dark); margin: 0; background-color: var(--light); display: flex; flex-direction: column; min-height: 100vh; }
      
      header { background: white; padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); text-align: center; }
      .logo { max-width: 200px; height: auto; }

      .hero { flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; }
      .hero-content { max-width: 700px; background: white; padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-top: 6px solid var(--primary); }
        
      h1 { font-size: 2.2em; margin-bottom: 10px; color: var(--dark); }
      .status-badge { display: inline-block; background: #e67e22; color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.9em; font-weight: bold; margin-bottom: 20px; }
        
      .services { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; margin: 30px 0; }
      .service-item { padding: 10px; border-left: 3px solid var(--primary); }

      .contact-box { background: var(--dark); color: white; padding: 25px; border-radius: 10px; margin-top: 30px; }
      .contact-box a { color: var(--primary); text-decoration: none; font-weight: bold; }
      
      .status-badge:hover { transform: scale(1.05); background-color: #559432; /* Ein etwas dunkleres Grün beim Drüberfahren */ box-shadow: 0 4px 15px rgba(0,0,0,0.2);}      
        
      footer { background: #eee; text-align: center; padding: 20px; font-size: 0.85em; color: #666; }
        
      @media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

