.footer {
  background: #1a1a2e;
  color: #ddd;
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 20px 20px;
}

.footer a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #4a6aff;
}

/* Top Block */
.footer-top {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.footer-top h2 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-top p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

/* Middle Block */
.footer-middle {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-column {
  min-width: 200px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Bottom Block */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #aaa;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
  color: #4a6aff;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
