/* =========================================================
   KONTAKTZONE UNTEN / RECHTE RASTERZELLE
   ========================================================= */

.stb-contact-zone {
  min-height: 360px;
  height: 100%;

  background: #d8ebb4;

  display: flex;
  align-items: center;
}

.stb-contact-inner {
  width: 100%;
  max-width: 620px;

  padding: 90px 70px;
}

.stb-contact-zone h2 {
  margin: 0 0 26px;

  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;

  color: #111;
}

.stb-contact-zone p {
  margin: 0 0 40px;

  font-size: 17px;
  line-height: 1.6;

  color: #222;
}


/* Buttons */
.stb-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stb-contact-button,
.stb-route-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 22px;

  border-radius: 7px;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none !important;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.stb-contact-button {
  background: #7f9f3f;
  color: #fff !important;

  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}

.stb-contact-button:hover {
  background: #8faf49;
  color: #fff !important;

  transform: translateY(-2px);

  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.stb-route-button {
  background: rgba(255,255,255,0.72);
  color: #2f4a5a !important;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stb-route-button:hover {
  background: #fff;
  color: #2f4a5a !important;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}


/* Mobil */
@media (max-width: 767px) {

  .stb-contact-zone {
    min-height: auto;
  }

  .stb-contact-inner {
    padding: 46px 36px;
  }

  .stb-contact-zone h2 {
    font-size: 26px;
  }

  .stb-contact-zone p {
    font-size: 16px;
  }

  .stb-contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .stb-contact-button,
  .stb-route-button {
    width: 100%;
    justify-content: center;
  }
}
