/* Zusätzliche Styles nur für die Über Uns Seite */
.about-section {
    padding: 120px 0 80px;
  }
  
  .about-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .about-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .about-header h1:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 25%;
  }
  
  .timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
  }
  
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
  }
  
  .timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
  }
  
  .timeline-left {
    left: 0;
    text-align: right;
  }
  
  .timeline-right {
    left: 50%;
    text-align: left;
  }
  
  .timeline-content {
    padding: 25px;
    background-color: var(--surface);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: var(--transition);
  }
  
  .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  .timeline-left .timeline-content {
    margin-right: 30px;
  }
  
  .timeline-right .timeline-content {
    margin-left: 30px;
  }
  
  .timeline-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .timeline-content p {
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  .timeline-badge {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 20px;
    right: -25px;
    border-radius: 50%;
    background-color: var(--primary);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .timeline-right .timeline-badge {
    left: -25px;
  }
  
  .timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    top: 35px;
    border-radius: 50%;
    background-color: var(--background);
    border: 4px solid var(--primary);
    z-index: 1;
  }
  
  .timeline-right::after {
    left: -10px;
  }
  
  .team-section {
    padding: 80px 0;
    background-color: var(--surface);
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .team-member {
    background-color: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  
  .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .team-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .team-info {
    padding: 20px;
    text-align: center;
  }
  
  .team-info h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  
  .team-info h4 {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .team-info p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .team-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
  }
  
  .values-section {
    padding: 80px 0;
  }
  
  .values-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .value-card {
    background-color: var(--surface);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
  }
  
  .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .value-card h3 {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }
  
  .highlight {
    color: var(--primary);
    font-weight: 600;
  }
  
  .about-text {
    background-color: var(--surface);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
  }
  
  .about-text p {
    margin-bottom: 20px;
  }
  
  .about-text p:last-child {
    margin-bottom: 0;
  }
  
  .about-quote {
    font-size: 1.2rem;
    font-style: italic;
    padding: 20px;
    border-left: 4px solid var(--primary);
    margin: 30px 0;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
  }
  
  @media (max-width: 992px) {
    .timeline::after {
      left: 31px;
    }
    
    .timeline-item {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
    
    .timeline-left, .timeline-right {
      left: 0;
      text-align: left;
    }
    
    .timeline-left .timeline-content, .timeline-right .timeline-content {
      margin-left: 20px;
      margin-right: 0;
    }
    
    .timeline-item::after {
      left: 22px;
      right: auto;
    }
    
    .timeline-badge {
      left: 5px;
      right: auto;
    }
  }
  
  @media (max-width: 768px) {
    .about-header h1 {
      font-size: 2.5rem;
    }
    
    .about-quote {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 576px) {
    .about-header h1 {
      font-size: 2rem;
    }
    
    .timeline-content {
      padding: 15px;
    }
    
    .about-text {
      padding: 25px;
    }
  }