/* Footer base */
.footer {
  background-color: #ECEFF1;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  width: 100%;
}

/* Social section */
.footer-social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0da128;
  color: white;
  padding: 1rem 5%;
  flex-wrap: wrap;
}

.footer-social a {
  color: white;
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.8;
}

/* Grid layout */
.footer-links {
  padding: 3rem 5%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-column h6 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.footer-column hr {
  width: 60px;
  height: 2px;
  background-color: #7c4dff;
  border: none;
  margin-bottom: 1rem;
}

.footer-column p {
  margin: 0.5rem 0;
}

.footer-column a {
  color: #333;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 0.95rem;
}