  /* === Preise Sektion === */
  .preise-section {
    background-color: #111827;
    padding: 100px 60px;
    color: white;
  }

  .preise-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #3B82F6;
  }

  .preise-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .preise-card {
    background-color: #1F2933;
    border-radius: 20px;
    padding: 50px 40px;
    width: 340px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #3B82F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

  .preise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
  }

  .preise-card.beliebt {
    border: 2px solid #3B82F6;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    padding-top: 50px;
  }

  .badge {
    position: absolute;
    top: -24px;
    background-color: #3B82F6;
    color: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: bold;
  }

  .preise-card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
  }

  .preise-card-preis {
    font-size: 2.2rem;
    color: #3B82F6;
    font-weight: bold;
    margin: 10px 0;
  }

  .preise-card-preis span {
    font-size: 1rem;
    color: #CBD5E1;
    margin-left: 4px;
  }

  .preise-card-sub {
    color: #CBD5E1;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .preise-card-liste {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    color: #E5E7EB;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    width: 100%;
  }

  .preise-card-liste li {
    margin-bottom: 8px;
  }

  .preise-button {
    background-color: #3B82F6;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .preise-button:hover {
    background-color: #2563eb;
  }

  .preise-toggle-wrapper {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .preise-toggle-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #6B7280; /* grau */
    transition: color 0.3s, font-weight 0.3s;
    cursor: pointer;
    user-select: none;
    opacity: 0.7; /* leicht abgeschwächt */
  }
  .preise-toggle-label.selected {
    color: #3B82F6;
    font-weight: bold;
    opacity: 1;
  }
  .switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
  }
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CBD5E1;
    border-radius: 13px;
    transition: background-color 0.2s;
  }
  .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.2s;
  }
  input:checked + .slider {
    background-color: #3B82F6;
  }
  input:checked + .slider:before {
    transform: translateX(22px);
  }



  /* Responsive Anpassung */
  @media (max-width: 768px) {
    .preise-container {
      flex-direction: column;
      align-items: center;
    }
  }
