.footer {
  background-color: #111;
  color: #eee;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 220px;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.footer-section a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #888;
}
