```css
.kontakt-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 15px 50px;
  color: #2f2f2f;
}

.kontakt-page * {
  box-sizing: border-box;
}

.kontakt-hero {
  background: #282826;
  color: #ffffff;
  border-radius: 18px;
  padding: 42px 34px;
  margin-bottom: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.kontakt-hero h1 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.kontakt-hero p {
  max-width: 900px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #d9d9d9;
}

.kontakt-alert {
  margin-top: 22px;
  padding: 15px 18px;
  background: #FEFE06;
  color: #282826;
  border: 1px solid #BABA02;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
  margin-bottom: 28px;
}

.kontakt-card,
.kontakt-map,
.kontakt-seo {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  border: 1px solid #f1efc0;
}

.kontakt-card h2,
.kontakt-seo h2 {
  margin: 0 0 16px;
  color: #282826;
  font-size: 24px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 10px;
}

.kontakt-card h2:after,
.kontakt-seo h2:after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  background: #FEFE06;
  border-radius: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.kontakt-card address {
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #3f3a32;
}

.kontakt-list p {
  margin: 9px 0;
  font-size: 16px;
}

.kontakt-list a,
.kontakt-seo a {
  color: #282826;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #FEFE06;
}

.kontakt-list a:hover,
.kontakt-seo a:hover {
  color: #000000;
  border-bottom-color: #BABA02;
}

.kontakt-hours {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.kontakt-hours div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  background: #fffef0;
  border-radius: 10px;
  border-left: 4px solid #FEFE06;
}

.kontakt-hours span {
  font-weight: 700;
  color: #282826;
}

.kontakt-map {
  padding: 0;
  overflow: hidden;
  min-height: 440px;
}

.kontakt-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

.kontakt-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FEFE06;
  color: #282826 !important;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none !important;
  border: 2px solid #FEFE06 !important;
  transition: all 0.2s ease;
}

.cp-btn:hover {
  background: #282826;
  color: #ffffff !important;
  border-color: #282826 !important;
  transform: translateY(-2px);
}

.kontakt-seo {
  margin-top: 28px;
}

.kontakt-seo p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
  color: #3f3a32;
}

.kontakt-links {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.kontakt-links li {
  background: #fffef0;
  border-radius: 12px;
  padding: 13px 15px;
  border-left: 4px solid #FEFE06;
}

.kontakt-links a {
  border-bottom: none;
}

.kontakt-links li:hover,
.kontakt-hours div:hover {
  border-left-color: #BABA02;
}

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

  .kontakt-map,
  .kontakt-map iframe {
    min-height: 360px;
  }

  .kontakt-hero {
    padding: 32px 24px;
  }

  .kontakt-hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .kontakt-page {
    padding: 20px 10px 36px;
  }

  .kontakt-hero,
  .kontakt-card,
  .kontakt-seo {
    border-radius: 14px;
    padding: 22px 18px;
  }

  .kontakt-hero h1 {
    font-size: 24px;
  }

  .kontakt-hero p,
  .kontakt-seo p {
    font-size: 15px;
  }

  .kontakt-hours div {
    flex-direction: column;
    gap: 3px;
  }

  .kontakt-links {
    grid-template-columns: 1fr;
  }

  .kontakt-cta {
    flex-direction: column;
  }

  .cp-btn {
    width: 100%;
  }
}
```
