








body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  color: #222;
}

/* ===== МЕНЮ ===== */
.main-nav {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu li {
  margin: 0 10px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
}

.menu a:hover {
  background: rgba(255,255,255,.25);
}

.phone-btn {
  background: #ffcc00;
  color: #000;
  padding: 8px 14px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== КОНТЕНТ ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 15px;
}

.contacts {
  display: grid;;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-box {
  flex: 1 1 280px;
}


.contact-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.contact-box i {
  font-size: 28px;
  color: #0072ff;
}

.contact-box h3 {
  margin-top: 10px;
}

.contact-box a {
  color: #0072ff;
  text-decoration: none;
  font-weight: bold;
}

/* ===== СОЦСЕТИ ===== */
.socials {
  text-align: center;
  margin: 30px 0;
}

.socials a {
  display: inline-block;
  margin: 0 10px;
  font-size: 28px;
  color: #0072ff;
}

.socials a:hover {
  color: #0056cc;
}

/* ===== ФУТЕР ===== */
footer {
  background: #1c1c1c;
  color: #fff;
  padding: 25px 10px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
 
}
.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-box {
  flex: 1 1 280px;
}





footer a {
  color: #ffcc00;
  text-decoration: none;
}

.copy {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}


#yandex-map {
  width: 100%;
  height: 400px;
  margin: 20px auto 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,.2);
}


