/* ueberuns.css – Modern gestaltete Boxen für die Über uns-Seite */

.ueberuns-container {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
  }
  
  .ueberuns-header {
    font-size: 28px;
    font-weight: bold;
    color: #007c40;
    text-align: center;
    border-bottom: 2px solid #00a052;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  
  .ueberuns-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 30px;
  }
  
  /* Listen */
  .ueberuns-list {
    margin: 20px 0;
    padding-left: 20px;
  }
  .ueberuns-list li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
  }
  
  /* Bilder */
  .ueberuns-image {
    display: block;
    max-width: 100%;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  /* Zusätzliche Abschnitte */
  .ueberuns-section {
    margin-top: 40px;
  }
  .ueberuns-section h3 {
    font-size: 22px;
    color: #007c40;
    margin-bottom: 15px;
    border-bottom: 1px solid #00a052;
    padding-bottom: 8px;
    text-align: center;
  }
  .ueberuns-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
  }
  
  /* Responsive Anpassungen */
  @media (max-width: 600px) {
    .ueberuns-container {
      padding: 20px;
      margin: 20px;
    }
    .ueberuns-header {
      font-size: 24px;
    }
    .ueberuns-text,
    .ueberuns-list li,
    .ueberuns-section p {
      font-size: 14px;
    }
    .ueberuns-section h3 {
      font-size: 20px;
    }
  }
  