.important-note {
    background-color: #f5f7fa;
    padding: 20px;
    border-left: 4px solid #4058B3;
    margin: 20px 0;
}

.tagline {
    color: #4058B3;
    font-size: 1.1rem;
    margin-top: -5px;
    margin-bottom: 30px;
}

.section {
    margin-bottom: 30px;
}


/* Für mobile Ansicht */
@media (max-width: 768px) {
    .page-container {
        flex-direction: column;
    }
    
    .main-content {
        padding-right: 0;
    }
    
    .sidebar {
        width: 100%;
        margin-top: 30px;
    }
    
    .contact-box {
        position: static;
        height: auto;
    }
}
.locations-section {
    margin: 60px 0;
    position: relative;
    padding-bottom: 40px;
  }
  
  .locations-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
  }
  
  .locations-info {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #4058B3 0%, #2B3E87 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(64, 88, 179, 0.2);
    position: relative;
  }
  
  .locations-info::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    background-color: #1e2b5e;
    bottom: -15px;
    right: -15px;
    z-index: -1;
    border-radius: 8px;
  }
  
  .locations-info h2 {
    color: white;
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .locations-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  
  .locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    flex: 2;
  }
  
  .location-card {
    background-color: #f5f7fa;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e5ee;
  }
  
  .location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .location-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    background-color: #4058B3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(64, 88, 179, 0.3);
  }
  
  .location-card h3 {
    color: #4058B3;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .location-card p {
    color: #5C789E;
    margin: 0;
    line-height: 1.6;
  }
  
  /* Responsive Anpassungen */
  @media (max-width: 992px) {
    .locations-container {
      flex-direction: column;
    }
    
    .locations-info {
      width: 100%;
    }
    
    .locations-grid {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .locations-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .locations-grid {
      grid-template-columns: 1fr;
    }
  }

  .stats-section {
    margin: 80px 0;
  }
  
  .stats-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    flex: 2;
  }
  
  .stat-item {
    background-color: #f5f7fa;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;                /* Flexbox aktivieren */
    flex-direction: column;       /* Elemente stapeln */
    justify-content: center;      /* Vertikale Zentrierung */
    align-items: center;          /* Horizontale Zentrierung (falls nötig) */
    min-height: 150px;            /* Optionale Mindesthöhe für bessere Wirkung */
  }
  
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4058B3;
    margin-bottom: 10px;
    line-height: 1;
  }
  
  .stat-label {
    color: #5C789E;
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  .stat-prefix {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #4058B3;
    font-weight: 500;
    font-size: 1rem;
  }
  
  .info-box {
    flex: 1;
    background: linear-gradient(135deg, #4058B3 0%, #2B3E87 100%);
    color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(64, 88, 179, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .info-box::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    background-color: #1e2b5e;
    bottom: -15px;
    right: -15px;
    z-index: -1;
    border-radius: 8px;
  }
  
  .info-box h2 {
    color: white;
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .info-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .changing-word {
    color: #39E4EA;
    transition: opacity 0.5s ease;
    display: inline-block;
    min-width: 100px;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .stats-container {
      flex-direction: column;
    }
    
    .stats-grid {
      width: 100%;
    }
    
    .info-box {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .stat-number {
      font-size: 2.5rem;
    }
  }

  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vh; /* Reduzierte Höhe für bessere Darstellung */
    object-fit: cover;
    z-index: -1;
}