.footer {
  background-color: #e71c2c;
  color: white;
  font-family: Arial, sans-serif;
  padding: 40px 0 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  padding: 10px;
}

.footer-about {
  min-width: 250px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-section h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.social-links a {
  display: inline-block;
  margin: 5px;
}

.social-links {
  flex-direction: column;
  display: flex;
}

.social-links img {
  width: 35px;
  height: 35px;
}

.footer-bottom {
  background-color: white;
  color: gray;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}
  .social-links a svg {
    fill: white;
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease;
  }

