*{
	padding: 0;
	margin: 0 ;
}

@font-face { font-family: Inter; src: url('Inter/Inter-VariableFont_slnt,wght.ttf'); } 
@font-face { font-family: Lobster; src: url('Lobster/Lobster-Regular.ttf'); } 

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* LEFT */
.hero-left h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  font-family: 'Inter';
  color: #fff;
  max-width: 700px;
}

.cta {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.3rem;
  font-family: 'Inter';
}

/* RIGHT */
.hero-right {
  width: 420px;
  height: 500px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  font-family: 'Inter';
  transition: 0.5s;
}
.hero-right:hover {
transform: scale(1.05);
}


.back {
  background-color: #151515;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
}

.back {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.back::before {
  position: absolute;
  content: ' ';
  display: block;
  width: 160px;
  height: 160%;
  background: linear-gradient(90deg, transparent, #ff9966, #ff9966, #ff9966, #ff9966, transparent);
  animation: rotation_481 5000ms infinite linear;
}

.back-content {
  position: absolute;
  width: 99%;
  height: 99%;
  background-color: #151515;
  border-radius: 16px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vh;
}

.card:hover .content {
  transform: rotateY(180deg);
}

@keyframes rotation_481 {
  0% {
    transform: rotateZ(0deg);
  }

  0% {
    transform: rotateZ(360deg);
  }
}




/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    display: block;
  }

  .hero-right {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top:6vh;
    height: 50vh;
  }

  .hero-left h2 {
    margin-top: 4vh;
  }
}



.headline1{
  position: relative;
  text-align: center;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1vh;
  color: #000000;
  font-size: 2.5em;
  font-family: 'Inter';
}
.headline2{
  position: relative;
  text-align: center;
  font-family: 'Inter';
  color: #4a4a4a;
  font-size: 1em;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2vh;
  margin-top: 4vh;
}

.splitter-top{
  position: relative;
  width: 80%;
  max-width: 300px;
  height: 1px;
  margin-top: 3vh;
  background-color: #000000;
  margin-left: auto;
  margin-right: auto;
}













.product-finder-button {
    display: block;
    width: auto;
    margin: 40px auto;
    background-color: #77b160;
     text-decoration: none;
     color:#fff;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    font-family: "Inter";
    transition: 0.5s;
    cursor: pointer;
    width: 100%;
    border: none;
    opacity: 0;
  transform: translateY(60px);
  transition: all .7s ease;
}
.product-finder-button:hover {
  background-color: #487835;
}
.product-finder-button.active {
  opacity: 1;
  transform: translateY(0);
}

/* Info-Box Container */
.info-section {
    max-width: 1200px;
    margin: 5vh auto;
    width: 90%;
}

.info-section-headline{
  position: relative;
  font-weight: 800;
  font-size:1.8em;
  font-family: "Inter";
  color: #000;
  text-align: center;
  overflow: hidden;
}

.info-container-h{
  position: relative;
  font-weight:600;
  font-size:1.2em;
  font-family: "Inter";
  color: #000;
}
.info-container-p{
  position: relative;
  font-size:1em;
  line-height: 1.1;
  margin-top: 0.9vh;
  font-family: "Inter";
  color: #000;
  width: 90%;
  margin-left: 5%;
}

.info-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 4vh;
    width:100%;
    opacity: 0;
  transform: translateY(60px);
  transition: all .7s ease;
}
.info-container.active {
  opacity: 1;
  transform: translateY(0);
}

.info-box {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    width: 90%;
    margin-left: 0%;
    padding-top:3vh;
    padding-bottom:3vh;
}

.info-box:hover {
    transform: translateY(-10px);
}

.info-box-2 {
    flex: 1;
    background-color: transparent;
    text-align: center;
    transition: transform 0.3s ease;
    width: 90%;
    margin-left: 0%;
    padding-top:3vh;
    padding-bottom:3vh;
}

.info-box-2:hover {
    transform: translateY(-10px);
}



.icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.icon-img {
  width:70px;
  margin-left: 0%;
}


.container {
position: relative;
  display: flex;
  flex-direction: row;   /* nebeneinander */
  align-items: center;   /* vertikal zentrieren */
  gap: 20px;
  margin: 2vh auto;      /* oben/unten + horizontal zentriert */
  width: fit-content;    /* Breite passt sich dem Inhalt an */
}

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

    .info-box {
        width: 90%;
        margin-bottom: 20px;
    }
    .info-box-2 {
        width: 90%;
        margin-bottom: 20px;
    }

    .container{
      display: flex;
      flex-direction: column; /* Elemente untereinander */
      align-items: center;    /* horizontal zentrieren */
      gap: 20px;  
      margin-top:2vh;
    }
    .box{
      position: relative;
    
    }
}

@media (max-width: 480px) {

    .product-finder-button {
        width: 100%;
        font-size: 14px;
    }

    .info-box {
        width: 100%;
    }
    .info-box-2 {
        width: 100%;
    }
}




.info-boxes-headline{
  position: relative;
  font-weight: 800;
  font-size:1.8em;
  font-family: "Inter";
  color: #000;
  text-align: center;
}



.text-box-info-bg{
  position: relative;
  background-color: #b7e1a7;
  margin-top:4vh;
  padding-bottom: 5vh;
  padding-top: 5vh;
}

  .text-box-info{
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    opacity: 0;
    transform: translateY(60px);
  transition: all .7s ease;
}
.text-box-info.active {
  opacity: 1;
  transform: translateY(0);
}

.text-box-info-box1{
    position: relative;
    width: 49%;
    height: auto;
}
.text-box-info-box1-2{
    position: relative;
    width: 49%;
    height: auto;
    margin-left: 2%;
}

.text-box-info-box1-img{
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    cursor: pointer;
    transition: 0.5s;
    object-fit: cover;
}
.text-box-info-box1-img:hover{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.text-box-info-box2{
    position: relative;
    width: 49%;
    height: auto;
    margin-left: 2%;
}
.text-box-info-box2-2{
    position: relative;
    width: 49%;
    height: auto;
}

.main-text-h6-m{
    position: relative;
    font-family: "Inter";
    font-size:1.5em;
    text-align: left;
    color:#252525;
    font-weight: 600;
    margin-top:0px;
    width:90%;
    margin-left: 0%;
}

.makler-info-m{
    position: relative;
    font-family: "Inter";
    color:#252525;
    font-size:17px;
    font-weight: 400;
    line-height: 1.5;
    margin-top:0.7em;
    width:95%;
    margin-left:0%;
}

@media screen and (max-width: 850px) {
	.text-box-info{
		display: inline-block;
    } 
    .text-box-info-box1{
        position: relative;
        width: 96%;
        margin-left: 2%;
        height: auto;
    }
    .text-box-info-box2{
        position: relative;
        width: 96%;
        margin-left: 2%;
        height: auto;
        margin-top:20px;
        text-align: center;
    }

    .text-box-info-box1-2{
        position: relative;
        width: 96%;
        margin-left: 2%;
        height: auto;
        margin-top:2vh;
    }
    .text-box-info-box2-2{
        position: relative;
        width: 96%;
        margin-left: 2%;
        height: auto;
        margin-top:20px;
        text-align: center;
    }

    .main-text-h6-m{
      position: relative;
      text-align: center;
      width:90%;
      margin-left: 5%;
  }

  .text-box-info{
    position: relative;
    width: 90%;
    margin-left: 5%;
  }
  .text-box-info-box1-img{
    position: relative;
    width: 90%;
    margin-left: 5%;
}
}












/* HERO */
.hero-blog {
  position: relative;

  background-image: url("blue-background.webp"); /* HIER BILD ERSETZEN */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 3rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: all .7s ease;
}
.hero-blog.active {
  opacity: 1;
  transform: translateY(0);
}

/* leichte helle Fläche für bessere Lesbarkeit */
.hero-overlay-blog {
  position: absolute;
  inset: 0;

}

/* CONTENT */
.hero-content-blog {
  position: relative;
  max-width: 420px;
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  font-family: 'Inter';
  margin-left: 20vh;
}

.hero-content-blog h5 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero-content-blog p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
}

/* BUTTON */
.btn-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: #0b6a63;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-blog:hover {
  background: #095b55;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-blog {
    padding: 1.5rem;
    min-height: 50vh;
  }

  .hero-content-blog {
    max-width: 100%;
    padding: 2rem;
    margin-left: 0vh;
  }

  .hero-content-blog h5 {
    font-size: 2rem;
  }
}

/* RESPONSIVE */
@media (max-width: 1450px) {
.hero-content-blog {
  margin-left: 10vh;
}
}
@media (max-width: 1250px) {
.hero-content-blog {
  margin-left: 5vh;
}
}





.top-recommendation{
  position: relative;
  color:#fff;
  font-size: 'Inter';
  font-weight:600;
  font-size: 1em;
  margin-top: 1.2vh;
}

/* CARD */
.property-card {
  width: 100%;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: block;
  padding-left: 2vh;
  padding-right: 2vh;
}

/* IMAGE */
.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.agent-avatar {
position: absolute;
top: 10px; right: 10px;
transform: translateX(10%);
} 

.agent-avatar img { 
width: 44px; 
height: 44px; 
border-radius: 50%; 
border: 2px solid #000; 
object-fit: cover; }

/* Karussell Container */
.carousel {
  display: flex;
  width: 400%; /* 4 Bilder x 100% */
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

/* Jedes Bild im Karussell */
.carousel img {
  width: 25%; /* 100% / 4 Bilder */
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}


.agent-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 1rem;
  height: auto;
}

.card-content h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
   white-space: nowrap; 
  width: 100%; 
  overflow: hidden;
  text-overflow: ellipsis; 
}


/* LOCATION */
.location {
  font-size: 0.9em;
  color: #d7d7d7;
  margin-top:0.7vh;
  padding-bottom:0.5vh;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .property-card {
    max-width: 100%;
  }
}





.container-img-info {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  font-family: 'Inter';
}

/* Textbereich */
.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  color: #424242;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-img-info {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-img-info.primary {
  background: linear-gradient(135deg, #77b160, #1c470b);
  color: white;
}

.btn-img-info.primary:hover {
  opacity: 0.9;
}

.btn-img-info.secondary {
  background-color: white;
  color: #1c470b;
  border: 2px solid #1c470b;
}

.btn-img-info.secondary:hover {
  background-color: #1c470b;
  color: white;
}

/* Bildbereich */
.hero-images {
  flex: 1;
  display: flex;
  justify-content: center;   /* zentriert das gesamte Grid */
}

/* Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;

  /* sorgt dafür, dass das ganze Grid mittig steht */
  justify-content: center;
}

/* Bilder */
.image-grid-img1 {
  width: 100%;
  max-width: 150px; /* verhindert dass Bilder zu groß werden */
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-grid-img2 {
  width: 100%;
  max-width: 250px; /* verhindert dass Bilder zu groß werden */
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Das dritte Bild über beide Spalten zentrieren */
.image-grid img:nth-child(3) {
  grid-column: 1 / span 2;   /* geht über beide Spalten */
  justify-self: center;      /* horizontal mittig */
}

/* Responsive */
@media (max-width: 992px) {
  .container-img-info {
    flex-direction: column;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .image-grid-img2{
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 34px;
  }

  .image-grid {
    gap: 15px;
  }
}






.container-video-bx {
    max-width: 1200px;
    margin: 7vh auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Video Bereich */
.hero-media {
    flex: 1;
}

.hero-media video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Optional für YouTube */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Text Bereich */
.hero-content-video-bx {
    flex: 1;
    font-family: 'Inter';
}

.hero-content-video-bx h3 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #3f4650;
}

.hero-content-video-bx p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #3f4650;
}

.cta-button {
    padding: 14px 28px;
    background-color: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cta-button:hover {
    background-color: #4f46e5;
}

/* Responsive */
@media (max-width: 992px) {
    .container-video-bx {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}







.info-text1{
  position: relative;
  font-family: 'Inter';
  width: 94%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6vh;
}

.info-text-headline{
  position: relative;
  font-size: 1.5em;
}

.info-text-headline-3{
  position: relative;
  font-size: 1.7em;
  margin-top:6vh;
}
.info-text-headline-4{
  position: relative;
  font-size: 1.5em;
  margin-top:6vh;
}

.info-text-headline-2{
  position: relative;
  font-size: 1.1em;
  margin-top:1vh;
}

.info-text-headline-center{
position: relative;
  font-size: 1.7em;
  text-align: center;
  margin-top:5vh;
}

.info-text-p{
  position: relative;
  font-size: 1em;
  line-height: 1.5;
  margin-top: 2vh;
}



.section{
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

    .timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Vertikale Linie */
.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #b7e1a7, #77b160);
    border-radius: 10px;
}

.item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
}

.number {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b7e1a7, #77b160);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    font-family: 'Inter';
    box-shadow: 0 10px 25px rgba(22, 249, 238, 0.165);
}

.card5 {
    background: var(--card);
    padding: 25px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    flex: 1;
    border:1px solid #dadada;
    font-family: 'Inter';
}

.card5:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.card5-headline{
font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card5 p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {

    .timeline::before {
        left: 25px;
    }

    .item {
        gap: 15px;
    }

    .number {
        min-width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .card5 {
        padding: 20px;
    }

    .section h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }
}


.splitter-design{
  position: relative;
  margin-top:6vh;
  width: 50%;
  max-width: 350px;
  height: 2px;
  background: #575757;
  margin-left: auto;
  margin-right: auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.info-text-headline-center{
position: relative;
  font-size: 1.7em;
  text-align: center;
  margin-top:5vh;
  font-family: 'Inter';
}






.leistungen {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop */
  width: 100%;
  margin-top:5vh;
}

/* Tablet */
@media (max-width: 992px) {
  .leistungen {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Smartphone */
@media (max-width: 600px) {
  .leistungen {
    grid-template-columns: 1fr; /* Untereinander */
  }
}

.card2 {
  padding: 40px 30px;
  color: #fff;
  min-height: 160px;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}


.card2-p {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  font-size: 0.9em;
}

.card2-headline {
  font-size: 1.2em;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Farben */
.card-1 { background: #77b160; }
.card-2 { background: #a2d68e; }
.card-3 { background: #103102; }

/* Hover */
.card:hover {
  opacity: 0.9;
}


.link-a{
  position: relative;
  color: #0974e6;
  transition:1s;
}
.link-a:hover{
  color: #e60909;
}











.container-scroll {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
    background-color: transparent;
    margin-top:30vh;
}

.field {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 300px;
}


.scroll {
	width: 60px;
	height: 60px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	position: relative;
	animation: down 1.5s infinite;
	-webkit-animation: down 1.5s infinite;
	&::before {
		content: '';
		position: absolute;
		top: 15px;
		left: 18px;
		width: 18px;
		height: 18px;
		border-left: 2px solid #ffffff;
  	border-bottom: 2px solid #ffffff;
		transform: rotate(-45deg);
	}
}

@keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}

@-webkit-keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}

#scroll_animation{
        display: none;
    }

   /* Responsive */
    @media (max-width: 900px) {
        .immobilie-verkaufen-kiel {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .immobilie-verkaufen-kiel-info p {
            margin: 0 auto 20px;
        }

        .stats {
            margin-top: 20px;
        }

        #scroll_animation{
        display: block;
    }
    }








    



.bg-anfrage-form{
  position: relative;
  padding-bottom: 5vh;
  padding-top: 5vh;
  font-family: 'Inter';
  width: 100%;
  background-color: #e0e0e0;
  background-image: url("anfrage-bg.webp");
  background-size: cover;        /* Bild füllt das Div */
  background-position: center;   /* Zentriert das Bild */
  background-repeat: no-repeat;
}


.form-container-2 {
    background: white;
    padding: 0px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    margin-left: auto;
    margin-right: auto;
    padding-top: 4vh;
    padding-bottom: 4vh;
}

.anfrage-headline {
    margin-bottom: 20px;
    text-align: center;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 95%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

input:focus {
    border-color: #667eea;
    outline: none;
}

.range-container {
    margin: 20px 0;
}

.range-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="range"] {
    width: 100%;
}

.checkbox {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.button-next {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: #667eea;
    color: white;
    transition: 0.3s;
}

.button-next:hover {
    background: #5a67d8;
}

.button-prev {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: #aaa;
    color: white;
    transition: 0.3s;
}

.button-prev:hover {
    background: #888;
}

/* Steps */
.form-step {
  width: 80%;
  margin-left: 10%;
    display: none;
    font-family: 'Inter';
}

.form-step.active {
    display: block;
}

