.footer {
  background: #f0f0f0; /* светло-серый фон */
  padding: 50px 20px;
  border-top: 1px solid #ccc;
  margin-top: 30px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #444;
}

.footer-container {
  max-width: 1430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222; /* тёмные заголовки */
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff6600; /* оранжевый при наведении */
}

.footer-about {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-company {
  font-weight: bold;
  margin: 10px 0;
  color: #222;
}

.footer-banners a {
  display: block;
  margin-bottom: 12px;
}

.footer-banners img {
  border: none;
  max-width: 120px;
  height: auto;
  transition: 0.3s;
}

.footer-banners img:hover {
  transform: scale(1.05);
}

/* Мобильная адаптация */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-banners {
  }
}
