.stars {
  color: #ffc107; /* Gelb = Motivation */
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: inline;
}
h4{
  color: #4A6FA5 
}

 body {
            scroll-behavior: smooth;
        }

    
        @media screen and (max-width: 768px) {
            .timeline-item {
                width: 100%;
                left: 0;
            }

            .timeline::after {
                left: 20px;
            }

            .timeline-item::before {
                left: 10px;
            }

            .timeline-content {
                margin-left: 40px;
                text-align: left !important;
            }
        }
    /* Header */
    .hero {
      background: #1F3A5F;
      color: #f8f9fa;
      padding: 80px 0;
    }

    .hero img {
      width: 360px;
      height: 360px;
      object-fit: cover;
      object-position: 50% 20%;
      border-radius: 50%;
      border: 4px solid white;
    }

    /* Timeline */
    .timeline {
      position: relative;
      max-width: 900px;
      margin: 50px auto;
      overflow: visible;
      padding-bottom: 50px;
    }

    .timeline::after {
      content: '';
      position: absolute;
      width: 4px;
      background-color: #1F3A5F ;
      top: 0;
      bottom: 0;
      left: 50%;
    }

    .timeline-item {
      padding: 20px;
      position: relative;
      width: 65%;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.6s ease;
      cursor: pointer;
    }

    .timeline-item.show {
      opacity: 1;
      transform: translateY(0);
    }

    .timeline-item.left { left: -15%; }
    .timeline-item.right { left: 50%; }

    .timeline-content {
      padding: 20px;
      background: #f8f9fa;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .timeline-item.left .timeline-content {
      text-align: left;
    }

    .timeline-item::before {
      content: "";
      position: absolute;
      width: 20px;
      height: 20px;
      right: -14px;
      background-color: #f8f9fa;
      border: 4px solid #1F3A5F ;
      top: 20px;
      border-radius: 50%;
      z-index: 1;
    }

    .timeline-item.right::before {
      left: -10px;
    }

    /* Hidden details */
    .details {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      margin-top: 10px;
    }

    .details.open {
      max-height: 700px;
    }
   

.my-5{
      background: #f8f9fa;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      padding: 20px;
      margin-bottom: 30px;
      transition: transform 0.2s;
}

button{
  font-size: 2.0em;
  font-family: Playfair Display;
  color: #f8f9fa;
}