
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px
}
section{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 0;
}
section:first-child p{
  font-weight: 500 ;
}
h1{
  text-align: center !important;
  font-size: 30px;
  margin: 0;
}
h2{
  font-size: 25px;
}
p{
  font-size: 22px;
  text-align: center;
}
.testimonialssect{
    height: 700px;
    width: 1100px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-bottom: 50px;
}
.testimonialssect:before{
    content:"";
    position: absolute;
    width: 300vw;
    left: -100vw;
    height: 100%;
    background-color: rgba(217,217,217, 0.2);

}
  .carousel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    touch-action: pan-y; /* erlaubt vertikales Scrollen, wir fangen horizontales Swipen selbst ab */
    cursor: grab;
  }
  .carousel.dragging { cursor: grabbing; }

  .carousel-track {
    display: flex;
    transition: transform 0.4s ease;
  }

  .slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 72px;
    padding: 20px 10px;
    user-select: none;
    width: 1100px;
    min-height: 500px;
  }

  .slide img {
    width: 270px;
    height: 353px;
    object-fit: cover;
    border-radius: 25px;
    flex-shrink: 0;
    pointer-events: none; /* verhindert natives Bild-Drag beim Swipen */
  }

  .slide-content {
    flex: 1;
    min-width: 0;
    gap: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
  }

  .brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }

  .brand-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Times New Roman", serif;
    font-style: italic;
    font-size: 18px;
    flex-shrink: 0;
  }

  .brand-name {
    font-size: 25px;
    font-weight: 700;
    color: #111;
  }

  .quote {
    font-size: 22px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    white-space: pre-line;
  }

  .author {
    font-size: 22px;
    font-weight: 700;
    color: #111;
  }

  .dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4d4d4;
    cursor: pointer;
    transition: background 0.25s ease;
  }

  .dot.active {
    background: #111;
  }

  @media (max-width: 640px) {
    .slide { flex-direction: column; text-align: center; }
    .brand-row { justify-content: center; }
  }

  .standardcta{
    border-radius: 56px;
    width: 800px;
    min-height: 400px;
  }
.standardcta h2{
  margin-bottom: 10px;
  font-size: 25px;
}
.standardcta p{
  font-size: 22px;
  text-align: center;
}

.standardcta .buttons{
  display: flex;
  flex-direction: column;
  gap: 15px;

}
.standardcta button{
  min-width: 250px;
  min-height: 60px;
  font-size: 22px;
  border-radius: 200px !important;
}

.productsgallerysect h2{
  margin-bottom: 100px !important;
}
.productsgallery{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  width: 100%;
  max-width: 90vw;
  justify-content: center;
}
.productsgallery img{
  width: 340px;
  height: 340px;
  border-radius: 24px;
  box-shadow: none;
  background-color: rgba(217,217,217, 0.2);
}
@media (max-width: 700px) {
  .productsgallery{
      grid-template-columns: 1fr 1fr;
      gap: 10vw
  }
  .productsgallery img{
    width: 40vw;
    height: 40vw;
  }
}
