/* Футер */
.footer {
  background-color: #fff;
  padding: 60px 20px 30px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.contacts-row {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 20px;
}

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

.contact-item span {
  font-weight: 400;
  font-size: 14px;
  color: #000;
}

.contact-item a {
  font-weight: 600;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.62);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f34c43;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin: 20px 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 40px;
  height: 50px;
  object-fit: cover;
}

.logo-text {
  text-align: left;
}

.footer-logo-title {
  font-weight: 700;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.footer-logo-subtitle {
  font-weight: 500;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.6px;
}

.footer-copyright {
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.52);
}