body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden; /* prevent horizontal scroll gaps */
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22.5px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  z-index: 102;
}
.menu-toggle span {
  display: block;
  position: absolute;
  height: 4.5px;
  width: 100%;
  background: #121212;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.menu-toggle span:nth-child(1) {
  top: 0px;
}
.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
  top: 9px;
}
.menu-toggle span:nth-child(4) {
  top: 18px;
}
.menu-toggle.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
.menu-toggle.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu-toggle.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

/* Drawer Nav */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 45vw;
  min-width: 280px;
  max-width: 420px;
  background: #fff;
  box-shadow: -4px 0 20px 0 rgba(0,0,0,0.17);
  display: flex;
  flex-direction: column;
  padding-top: 65px;
  align-items: flex-start;
  gap: 16px;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  z-index: 101;
}
.nav-drawer a {
  text-decoration: none;
  color: #111;
  font-size: 1.11rem;
  font-weight: 700;
  padding: 14px 32px;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.18s;
  border-radius: 3px 0 0 3px;
}
.nav-drawer a:hover {
  background: #f1f1f1;
}
.nav-drawer.open {
  transform: translateX(0);
}
.drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #1212123b;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease-out;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-menu { display: none !important; }

/******* TOP-LEVEL SECTION SPACING ******/
.slider-section {
  max-width: 100vw;
  margin-top: 44px;
  margin-bottom: 110px;
}

.dashboard-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto 180px auto;
  gap: 50px;
  padding: 0 16px;
}

.tech-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto 180px auto;
  gap: 50px;
  padding: 0 16px;
}

.grove-special {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 970px;
  margin: 0 auto 180px auto;
  padding: 0 16px;
  gap: 50px;
}

.contact-section {
  background: rgba(242, 242, 242, 1);
  border-radius: 18px 18px 0 0;
  /* Remove max-width and auto margin to make it full width */
  max-width: none;
  margin: 0 0 120px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  /* Set horizontal padding to 0 */
  padding: 56px 0 38px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-section h4 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 38px;
  text-align: center;
}
.contact-card {
  background: none;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(56, 58, 95, 0.10);
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1100px; /* increased to accommodate two-column form */
  min-height: 290px; /* ensure enough room for fields */
  padding: 36px 30px 28px 30px; /* more spacious padding */
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px; /* less space between rows */
  flex: 1 1 38%;
  align-items: stretch;
  justify-content: center;
  font-size: 0.93rem; /* smaller text */
}
.info-box {
  display: flex;
  align-items: center;
  gap: 17px;
  background: rgba(242, 242, 242, 1);
  width: auto;
  min-width: 160px; /* was 220px */
  padding: 10px 14px 10px 10px; /* more compact padding */
  font-size: 1.05rem; /* was 1.25rem */
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  box-shadow: 0 2px 13px rgba(0,0,0,0.06);
}
.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; /* was 88px */
  height: 58px; /* was 88px */
  background: #757575; /* dark gray */
  border-radius: 16px;
  margin-right: 14px;
  padding: 0;
}
.info-box span:last-child {
  display: flex;
  align-items: center;
  color: #111;
  font-size: 1.12rem; /* was 1.36rem */
  font-weight: bold;
  margin-left: 10px;
}
.info-box a {
  color: #111 !important;
}
.contact-divider {
  display: flex;
  align-items: center;
  color: #aaa;
  font-size: 1.08rem;
  font-style: italic;
  justify-content: center;
  margin: 0 18px;
  padding: 0 9px;
  border-left: 2.2px solid #ececec;
  border-radius: 8px;
  font-weight: 500;
  min-height: 82px;
  min-width: 38px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
  flex: 1 1 54%;
  justify-content: center;
}
.contact-form button {
  grid-column: 1 / -1;
}
.contact-form input {
  padding: 15px 18px;
  font-size: 1.07rem;
  border-radius: 9px;
  border: 1.2px solid #e5e5e5;
  outline: none;
  transition: border 0.18s;
  background: #f8f8fa;
  margin-bottom: 2px;
}
.contact-form input:focus {
  border: 1.6px solid #497cff;
  background: #fff;
}
.contact-form input[type="date"],
.contact-form input[type="time"] {
  cursor: pointer;
}
.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.contact-form input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
}
.contact-form button {
  padding: 16px 0;
  background: #121212;
  color: #f1f1f1;
  border: none;
  border-radius: 9px;
  font-size: 1.11rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
  box-shadow: 0 1.5px 6px #121212;
  letter-spacing: 0.02em;
}
.contact-form button:hover {
  background: #333;
}
@media (max-width:900px) {
  .contact-card {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    max-width: 97vw;
    min-width: 0;
    padding: 24px 7vw 17px 7vw;
  }
  .contact-section {
    padding-left: 0;
    padding-right: 0;
  }
  .contact-info { align-items: center; }
  .contact-divider {
    margin: 16px 0;
    min-width: auto; min-height: auto;
    padding: 0 0 7px 0;
    border-left: none;
    border-top: 2.2px solid #ececec;
    width: 100%;
    text-align: center;
    border-radius: 0;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 300px;
  background: #121212;
  border-top: 1px solid #eee;
  padding: 70px 18px 55px 18px;
  font-size: 1.03rem;
  margin-top: 60px;
}

.footer a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #121212;
  text-decoration: none;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-links a {
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-email,
.footer-phone {
  font-weight: 600;
}

@media (max-width: 700px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact {
    align-items: flex-start;
  }
}
.info-box a {
  color: #121212 !important;
}

/****** REST REMAINS MOSTLY SAME as last version, only inner elements below this point ******/
.grove-logo {
  font-size: 2.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #111;
  text-shadow: 2px 6px 14px #aaa, 0 2px 3px #e8e8e8;
}
.grove-logo .logo-shadow { color: #111; }
.special-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  height: 100%;
  text-align: center;
}
.special-text h3 {
  font-size: 1.29rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.special-text p {
  font-size: 1.07rem;
  color: #444;
  margin: 0 0 0 0;
}
.dashboard-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  height: 100%;
  text-align: center;
}
.dashboard-text h2 {
  font-size: 1.33rem;
  font-weight: bold;
  margin: 0 0 16px 0;
}
.dashboard-text p {
  margin: 0 0 0 0;
  color: #444;
  font-size: 1.02rem;
}
.dashboard-img {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.dashboard-img img {
  width: 450px;
  max-width: 98vw;
}
.tech-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  height: 100%;
  text-align: center;
}
.tech-text h2 {
  font-size: 1.33rem;
  font-weight: bold;
  margin: 0 0 16px 0;
}
.tech-text p {
  margin: 0 0 0 0;
  color: #444;
  font-size: 1.02rem;
}
.tech-img {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.tech-img img {
  width: 450px; /* adjust this value to make the image larger/smaller */
  max-width: 98vw;
}
.slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 560px;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
}
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}
.slide {
  min-width: 100%;
  height: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}
.slider-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.slider-dots span.active {
  background: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.22);
}
@media (max-width:900px) {
  .dashboard-section, .tech-section, .grove-special { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .dashboard-img img, .tech-img img {margin: 60px 0 0 0;}
  .slider { height: 350px; }
  .slider-section { margin-top: 24px; margin-bottom: 70px; }
  .dashboard-section { margin-bottom: 120px; }
  .tech-section { margin-bottom: 120px; }
  .grove-special { margin-bottom: 120px;}
  .contact-section { margin-bottom: 65px; }
  .footer { padding-top: 19px; padding-bottom: 13px; margin-top: 35px; }
}
@media (max-width:700px) {
  .slider { height: 200px; min-height: 91px; }
  .slider-section { margin-top: 8px; margin-bottom: 42px;}
  .dashboard-section, .tech-section, .grove-special { gap: 12px; padding: 0 4px; }
  .dashboard-section { margin-bottom: 80px; }
  .tech-section { margin-bottom: 80px; }
  .grove-special { margin-bottom: 80px; }
  .contact-section { margin-bottom: 35px; }
  .footer { margin-top: 20px; }
}

a[href^="tel:"], a[href^="mailto:"] {
  color: #eee;
  text-decoration: none;
}

/* About Us Page Styles */
.about-hero-section {
  max-width: 100vw;
  margin-top: 44px;
  margin-bottom: 165px;
}

.about-hero-image {
  width: 100%;
  height: 560px;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-section {
  max-width: 1050px;
  margin: 0 auto 250px auto;
  padding: 0 16px;
}

.stats-content {
  display: flex;
  flex-direction: column;
  gap: 250px;
}

.stat-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.stat-item-left {
  justify-items: center;
}

.stat-item-left .stat-number {
  justify-self: center;
}

.stat-item-left .stat-text {
  text-align: center;
  justify-self: center;
}

.stat-item-right {
  justify-items: center;
}

.stat-item-right .stat-text {
  text-align: center;
  justify-self: center;
}

.stat-item-right .stat-number {
  justify-self: center;
}
.stat-percent {
  font-size: 4.5rem;
  font-weight: 700;
  color: #497cff;
  line-height: 1;
  flex-shrink: 0;
}
.stat-number {
  font-size: 4.5rem;
  font-weight: 700;
  color: #497cff;
  line-height: 1;
  flex-shrink: 0;
}
.countup {
  font-size: 4.5rem;
  font-weight: 700;
  color: #497cff;
  line-height: 1;
  flex-shrink: 0;
}

.stat-text {
  font-size: 1.33rem;
  font-weight: 700;
  line-height: 1.5;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  display: block;
}

.text-black {
  color: #111;
  display: inline;
}

.text-blue {
  color: #497cff;
  display: inline;
}

.typewriter-section {
  max-width: 1050px;
  margin: 0 auto 200px auto;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.typewriter-text-container {
  text-align: center;
  width: 100%;
}

.typewriter-text-container .typewriter-cursor {
  font-size: 1.33rem;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
  display: inline-block;
}

.expertise-section {
  max-width: 1050px;
  margin: 0 auto 200px auto;
  padding: 0 16px;
}

.expertise-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.expertise-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}

.expertise-heading {
  font-size: 1.33rem;
  font-weight: 700;
  color: #111;
  margin: 6px;
  display: inline-block;
  white-space: nowrap;
  margin-right: 16px;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  vertical-align: top;
}

.expertise-list li {
  font-size: 1.33rem;
  font-weight: 700;
  color: #497cff;
  padding: 0;
  margin: 0;
  line-height: 2;
  display: block;
}

@media (max-width: 900px) {
  .about-hero-image {
    height: 350px;
  }
  .about-hero-section {
    margin-top: 24px;
    margin-bottom: 70px;
  }
  .stats-section {
    margin-bottom: 70px;
  }
  .expertise-section {
    margin-bottom: 80px;
  }
  .stat-number {
    font-size: 3.5rem;
  }
  .stat-text {
    font-size: 1.15rem;
  }
  .expertise-flow {
    flex-direction: column;
  }
  .expertise-heading {
    font-size: 1.2rem;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .expertise-list li {
    font-size: 1.15rem;
  }
}

@media (max-width: 700px) {
  .about-hero-image {
    height: 200px;
    min-height: 91px;
  }
  .about-hero-section {
    margin-top: 8px;
    margin-bottom: 42px;
  }
  .stats-section {
    margin-bottom: 39px;
    padding: 0 4px;
  }
  .expertise-section {
    margin-bottom: 41px;
    padding: 0 4px;
  }
  .stat-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .stat-item-right {
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-item-left .stat-text,
  .stat-item-right .stat-text {
    text-align: left;
  }
  .stat-number {
    font-size: 3rem;
  }
  .stat-text {
    font-size: 1.05rem;
  }
  .expertise-flow {
    flex-direction: column;
  }
  .expertise-heading {
    font-size: 1.1rem;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .expertise-list li {
    font-size: 1.05rem;
  }
}

/* Typewriter Animation */
.stat-text .typewriter-cursor,
.typewriter-text-container .typewriter-cursor {
  position: relative;
  display: inline-block;
  border-right: 2px solid rgba(17, 17, 17, 0.75);
  white-space: nowrap;
  overflow: hidden;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

.stat-text .typewriter-animation {
  animation: 
    typewriter 2s steps(60, start) 0.5s 1 normal both, 
    blinkingCursor 500ms steps(60) infinite normal;
}

.typewriter-text-container .typewriter-animation {
  animation: 
    typewriter 2s steps(80, start) 0.5s 1 normal both, 
    blinkingCursor 500ms steps(80) infinite normal;
}

@keyframes typewriter {
  0% { 
    clip-path: inset(0 100% 0 0);
  }
  100% { 
    clip-path: inset(0 0% 0 0);
  }
}

@keyframes blinkingCursor {
  from { border-right-color: rgba(17, 17, 17, 0.75); }
  to { border-right-color: transparent; }
}

/* Kontakt Page Styles */
.kontakt-hero-section {
  max-width: 100vw;
  margin-top: 44px;
  margin-bottom: 165px;
}

.kontakt-hero-image {
  width: 100%;
  height: 560px;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
}

.kontakt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontakt-heading-section {
  max-width: 1050px;
  margin: 0 auto 200px auto;
  padding: 0 16px;
}

.kontakt-heading {
  font-size: 1.33rem;
  font-weight: 700;
  text-align: center;
  color: #111;
  line-height: 1.5;
}

.kontakt-content-section {
  background: #fff;
  padding: 0 20px 120px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-blue {
  color: #497cff;
}

.kontakt-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 100px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  min-height: 400px;
}

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

.kontakt-column-left {
  align-items: flex-start;
  text-align: left;
}

.kontakt-column-right {
  align-items: flex-end;
  text-align: right;
}

.kontakt-description {
  font-size: 1.33rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
  line-height: 1.5;
}

.kontakt-info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(242, 242, 242, 1);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  width: fit-content;
  margin-top: 30px;
}

.kontakt-column-right .kontakt-info-box {
  flex-direction: row-reverse;
}

.kontakt-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #757575;
  border-radius: 10px;
  flex-shrink: 0;
}

.kontakt-icon img {
  width: 25px;
  height: 25px;
}

.kontakt-info-text {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

.kontakt-info-text:hover {
  color: #497cff;
  transition: color 0.2s;
}

.kontakt-column-center-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

.kontakt-divider-line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  min-height: 400px;
  background: #e5e5e5;
  z-index: 1;
}

.kontakt-column-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 350px;
  padding: 0 20px;
  z-index: 2;
  background: #fff;
}

.kontakt-divider-text {
  display: block;
  text-align: center;
  color: #aaa;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 50px;
  background: #fff;
  padding: 0 10px;
}

.kontakt-column-center .kontakt-description {
  margin-bottom: 50px;
  text-align: center;
  margin-top: 30px;
}

.kontakt-column-center .contact-form {
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
}

.kontakt-phone-illustration {
  margin-bottom: 50px;
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.kontakt-phone-illustration img {
  max-width: 150px;
  height: auto;
}

.kontakt-gmail-logo {
  margin-bottom: 50px;
  display: flex;
  justify-content: flex-end;
}

.kontakt-gmail-logo img {
  max-width: 120px;
  height: auto;
}

@media (max-width: 900px) {
  .kontakt-hero-image {
    height: 350px;
  }
  .kontakt-hero-section {
    margin-top: 24px;
  }
  .kontakt-heading-section {
    margin-bottom: 70px;
  }
  .kontakt-content-section {
    padding: 0 20px 80px 20px;
  }
  .kontakt-heading {
    font-size: 1.2rem;
  }
  .kontakt-description {
    font-size: 1.15rem;
  }
  .kontakt-content {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .kontakt-description {
    margin-bottom: 40px;
  }
  .kontakt-info-box {
    margin-top: 20px;
  }
  .kontakt-phone-illustration {
    margin-bottom: 40px;
    margin-top: 20px;
  }
  .kontakt-gmail-logo {
    margin-bottom: 40px;
  }
  .kontakt-column-center .kontakt-description {
    margin-bottom: 40px;
    margin-top: 20px;
  }
  .kontakt-divider-text {
    margin-bottom: 40px;
  }
  .kontakt-column-left,
  .kontakt-column-right {
    align-items: center;
  }
  .kontakt-column-left .kontakt-description,
  .kontakt-column-right .kontakt-description {
    text-align: center;
  }
  .kontakt-column-center-wrapper {
    order: 2;
  }
  .kontakt-column-center {
    padding: 0;
    max-width: 100%;
  }
  .kontakt-divider-line {
    display: none;
  }
  .kontakt-divider-text {
    margin: 0 0 20px 0;
  }
  .kontakt-column-left {
    order: 1;
  }
  .kontakt-column-right {
    order: 3;
  }
  .kontakt-phone-illustration,
  .kontakt-gmail-logo {
    justify-content: center;
  }
  .kontakt-column-right .kontakt-info-box {
    justify-content: center;
    flex-direction: row;
  }
  .kontakt-info-box {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .kontakt-hero-image {
    height: 200px;
    min-height: 91px;
  }
  .kontakt-hero-section {
    margin-top: 8px;
  }
  .kontakt-heading-section {
    margin-bottom: 39px;
    padding: 0 4px;
  }
  .kontakt-content-section {
    padding: 0 16px 60px 16px;
  }
  .kontakt-heading {
    font-size: 1.1rem;
  }
  .kontakt-content {
    gap: 60px;
  }
  .kontakt-description {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }
  .kontakt-info-box {
    margin-top: 15px;
  }
  .kontakt-phone-illustration {
    margin-bottom: 30px;
    margin-top: 15px;
  }
  .kontakt-gmail-logo {
    margin-bottom: 30px;
  }
  .kontakt-column-center .kontakt-description {
    margin-bottom: 30px;
    margin-top: 15px;
  }
  .kontakt-divider-text {
    margin-bottom: 30px;
  }
  .kontakt-info-box {
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }
  .kontakt-column-center .contact-form {
    max-width: 100%;
  }
}

/* ===== Form status feedback ===== */
.form-status {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  text-align: center;
}
.form-status--success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-status--error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
