.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 100px;
  background: white;
  border-bottom: 1px solid #eee;
}
body {
  font-family: "DM Sans", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #f9f9f9;
}
#phone-button {
  background: none;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  border: none;
  color: #6c757d;
  text-decoration: none;
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}
.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.header__nav {
  display: flex;
  gap: 40px;
}

.header__link {
  font-size: 1rem;
  font-weight: 500;
}

.header__cta {
  background: #ff5722;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
}
.footer {
  background-color: #f0f6ff;
  padding: 40px;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__column {
  flex: 1;
  margin-right: 20px;
}

.footer__column--application {
  flex: 0 0 auto;
}

.footer__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__item {
  margin-bottom: 10px;
  color: #6c757d;
}

.footer__link {
  text-decoration: none;
  color: #6c757d;
}
.hero__button:hover {
  background: #3700b3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.6s;
}

.footer__link:hover {
  text-decoration: underline;
  color: #2a2a2a;
}

.footer__button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
}
.hero__maps {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.footer__button:hover {
  background-color: #0056b3;
}
.directions {
  padding: 40px;
  background-color: #f9f9f9;
  font-family: "DM Sans", sans-serif;
}

.directions__title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.directions__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Элементы сетки */
.directions__item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  box-sizing: border-box;
}

.directions__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.directions__image {
  width: 100%;
  height: auto;
  display: block;
}

.directions__caption {
  padding: 15px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
}
