* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

.footer-logo img {
  max-width: 150px;
}

.footer-item {
  margin: 10px 0;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-item i {
  color: #ff2c2c; /* Orange-Red */
  font-size: 20px;
}

.footer-line {
  width: 80%;
  height: 1px;
  background-color: white;
  margin: 15px auto;
}

.copyright {
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-item {
    font-size: 16px;
  }

  .footer-logo img {
    max-width: 120px;
  }
}

footer a {
  text-decoration: none;
  color: white;
}

footer a:hover {
  color: #ff4500; /* Optional hover effect */
}
