#leistungen-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .leistungen-btn {
    border: 1px solid #A1BDE6;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px;
    font-size: 20px;
    color: #2f2f2f;
    text-align: left;
    transition: background-color 0.3s, color 0.3s;
  }
  .leistungen-btn:hover, .leistungen-btn.active {
    background-color: #A1BDE6;
    color: #ffffff;
  }
  
  .detail-text {
    display: none;
  }
  .detail-text.active {
    display: block;
  }
  .detail-box {
    padding: 30px 30px 40px 30px;
    background-color: #A1BDE650;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .detail-box h2 {
    color: #568fe6;
    margin-bottom: 20px;
    font-size: 40px; /* passt zu deinem h2-Standard */
  }
  .detail-box p {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .detail-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
  }
  .detail-box ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 22px; /* <-- Schriftgröße der Liste auf 22px vergrößert */
    line-height: 1.6;
  }
  .detail-box ul li::before {
    content: "✔";
    color: #568fe6;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px; /* Häkchen auch etwas größer, passt optisch zur Schrift */
  }
  
  @media (max-width: 760px) {
    #leistungen-list {
      margin-top: 10px;
      gap: 8px;
    }
  
    .leistungen-btn {
      padding: 12px;
      font-size: 18px;
    }
  
    .detail-box {
      padding: 20px 20px 30px 20px;
      border-radius: 12px;
      margin-top: 10px;
      margin-bottom: 20px;
    }
  
    .detail-box h2 {
      font-size: 28px;
      margin-bottom: 15px;
    }
  
    .detail-box p {
      font-size: 18px;
      margin-bottom: 15px;
    }
  
    .detail-box ul li {
      font-size: 18px;
      margin-bottom: 12px;
      padding-left: 24px;
    }
  
    .detail-box ul li::before {
      font-size: 18px;
      top: 2px;
    }
  }
  