.hero-fullwidth {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  background: url('/image/catalog/slideshow/slider2-1920x400.png') center/cover no-repeat;
  padding: 0px 0px;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  max-width: 100%;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.map-placeholder {
  margin: 40px auto;
  max-width: 800px;
}

.map-image {
  width: 100%;
  opacity: 0.9;
}

.hero-title {
  color:#fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.btn-geo {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-geo-primary {
  background-color: #00b5e9;
  color: #fff;
}

.btn-geo-primary:hover {
  background-color: #2196f3;
}

.btn-geo-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-geo-outline:hover {
  background-color: #fff;
  color: #7a0000;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 23px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}