/* Font and Reset */
footer {
  font-family: 'Segoe UI', sans-serif;
  color: #444;
  background-color: #222;
}

/* Top section */
.footer-top {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2a2a2a;
}

.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.footer-column a {
  text-decoration: none;
  color: #444;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #007bff;
}

/* Bottom section */
.footer-bottom {
  text-align: center;
  padding: 30px 20px;
  background: #222;
  color: #ccc;
  border-top: 1px solid #444;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand img {
  height: 32px;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  color: #ccc;
  font-size: 18px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #1e90ff;
}

footer .copyright {
  margin-top: 15px;
  font-size: 14px;
  color: #aaa;
}
