.footer {
  background: #111;
  color: #ccc;
  padding: 50px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.footer-brand .logo {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}

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

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #222;
  border-radius: 50%;
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}

.social a:hover {
  background: #f15bb5;
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 13px;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
  margin-left: 15px;
}

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