.hero-grosshandel {
  padding: 40px 0 40px;
}

.hero-grosshandel h1 {
  font-size: 29px;
  font-weight: 600;
  color: #353C35;
  text-align: center;
  margin-bottom: 20px;
}

.hero-grosshandel p {
  text-align: center;
  max-width: 630px;
  margin: 0 auto 40px;
  font-size: 17px;
  font-weight: 400;
  color: #353C35;
}

.hero-grosshandel h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
  color: #353C35;
  display: flex;
  justify-content: flex-start;
  padding-left: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 15px;
}

.feature-card {
  background: #fff;
  border: 1px solid #EAEAEA;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-card img {
  height: 50px;
  margin-bottom: 5px;
  max-width: 100%;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #353C35;
  margin-bottom: 0;
}

.feature-card p {
  font-size: 14px;
  color: #353C35;
  line-height: 1.5;
  text-align: start;
  margin-bottom: 5px;
}

.cta-section-fixed {
  background-color: #E9F8E9;
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: 75px;
  padding-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  height: 350px;
  margin-top: 150px;
  margin-bottom: 50px;
}

.cta-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 60px;
  position: relative;
}

.cta-image-fixed {
  position: relative;
  margin-top: -75px;
  margin-left: -50px;
  z-index: 2;
  flex-shrink: 0;
}

.cta-image-fixed img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.cta-text-fixed {
  flex: 1;
}

.cta-text-fixed h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 150%;
  color: #2D2D2D;
  margin-bottom: 12px;
}

.cta-text-fixed p {
  font-size: 17px;
  font-family: 400;
  color: #2D2D2D;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #4CA54C;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
}

.cta-button:hover {
  background-color: #3d8e3d;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section-fixed {
    flex-direction: column;
    height: auto;
    margin: 50px 20px;
    padding: 40px 20px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .cta-image-fixed {
    margin: 0 auto;
    max-width: 100%;
  }
}


@media (max-width: 768px) {
  .hero-grosshandel {
    padding: 30px 0;
  }

  .hero-grosshandel h1 {
    font-size: 24px;
    padding: 0 15px;
  }

  .hero-grosshandel p {
    font-size: 15px;
    padding: 0 15px;
  }

  .hero-grosshandel h2 {
    font-size: 20px;
    justify-content: center;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .cta-text-fixed {
    padding: 0 15px;
  }

  .cta-text-fixed h2 {
    font-size: 30px;
  }

  .cta-text-fixed p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-grosshandel h1 {
    font-size: 21px;
  }

  .cta-text-fixed h2 {
    font-size: 26px;
  }
}
