 /* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  /* Header Styles */
  
  h1 {
    font-size: 36px;
    margin-bottom: 9px;
    color: #00698f;
  }
  
  h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #3a3a3a;
  }
  
  h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #585858;
  }
  h4 {
    font-size: 9px;
    margin-bottom: 5px;
    color: #585858;
  }
  
  /* Layout Styles */
  
  header {
    background-color: #00698f;
    padding: 20px;
    text-align: center;
    color: #fff;
  }
  
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  
  section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Specific Styles */
  
  .robotik-ag {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .informationen {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
  }
  footer {
    margin-top: 35px;
  }