/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Footer Styles */
.footer {
  background-color: #f5f5f5;
  padding: 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  width: 30%;
  padding: 10px;
}

.footer-column ul {
  list-style-type: none;
}

.footer-column li {
  margin: 5px 0;
}

.footer-column a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #f50057;
}

/* Social Media Section */
.footer-social {
  width: 10%;
  padding: 10px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.footer-social img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.footer-social img:hover {
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #333;
}

.footer-bottom p {
  margin: 0;
}
