/* === Footer === */
.footer {
  background: linear-gradient(135deg, #1c1c1c, #111); /* темный градиент */
  color: #ccc; /* основной текст серый */
  padding: 60px 80px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* чтобы колонки не ломались на маленьких экранах */
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px; /* чтобы колонки не сжимались слишком сильно */
}

.footer-logo {
  max-width: 110px;
}

/* Заголовки */
.footer h4 {
  margin-bottom: 16px;
  font-size: 20px;      /* чуть больше */
  font-weight: 700;     /* жирнее */
  color: #fff;          /* ярче для заголовка */
}

/* Основной текст */
.footer p {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 12px;      /* немного меньше */
  font-weight: 300;     /* обычная жирность */
  color: #aaa;          /* светло-серый для текста */
}

/* Ссылки */
.footer-link {
  color: #999;          /* сероватый цвет */
  font-size: 12px;  
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
  color: #999;      /* акцент при наведении */
}

.social-icons a {
  display: inline-flex;           /* чтобы задать фон и скругление */
  justify-content: center;
  align-items: center;
  width: 40px;                    /* чуть больше, чем иконка */
  height: 40px;
  background: #fff;               /* белый фон */
  border-radius: 50%;             /* полностью круглая форма */
  padding: 4px;                   /* немного отступа вокруг иконки */
  box-sizing: border-box;
  transition: transform 0.2s;     /* анимация при наведении */
}

.social-icons a:hover {
  transform: scale(1.1);          /* лёгкое увеличение при наведении */
}

.social-icons a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

