/* Сброс и базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #fbecd4;
  color: #0b1e3a;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* Контейнер */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Навигация */
header {
  background: #0b1e3a;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-menu a {
  color: #f8c32d;
  font-weight: 500;
  transition: color .3s;
}
.nav-menu a:hover {
  color: #ffffff;
}
.btn-signin {
  background: #2ab7ca;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background .3s;
}
.btn-signin:hover {
  background: #1a9aa8;
}

/* Hero */
.hero {
  /* background: #fdfbf5; */
  padding: 10px 0;
  padding-bottom: 5px;
  text-align: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.logo {
  max-width: 100%;
  width: 500px;
  height: auto;
}
.hero-content h1 {
  font-size: 2.5rem;
  color: #0b1e3a;
}
.hero-content p {
  max-width: 600px;
  color: #3a4a6b;
  font-size: 1rem;
}
.btn-primary {
  background: #f8c32d;
  color: #0b1e3a;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 30px;
  transition: background .3s, transform .2s;
}
.btn-primary:hover {
  background: #e0af1f;
  transform: translateY(-2px);
}

#map { 
  width:100%; 
  height:400px; 
  margin-top:20px; 
}

/* Адаптив */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .btn-signin {
    display: none;
  }
}
