.site-footer {
  background-color: #4b3cef;
  color: white;
  padding: 60px 40px 30px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 1px solid rgb(255, 255, 255);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-column p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.social-icon img {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.3s;
}


/* Divider */
footer hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

/* Bottom Footer */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500; /* Optional: for better readability */
}

.footer-links a:hover {
  text-decoration: underline;
  color: white; /* Optional: keeps color consistent on hover */
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-links {
    gap: 12px;
    color: white;
  }
  .footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500; /* Optional: for better readability */
}

.footer-links a:hover {
  text-decoration: underline;
  color: white; /* Optional: keeps color consistent on hover */
}

}
