.footer {
  display: flex;
  background-color: #222;
  color: #fff;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  flex: 1;
  min-width: 300px;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 18px;
}

.footer-right {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.footer-right h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.footer-right p {
  margin-bottom: 1rem;
  color: #aaa;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background-color: #1da1f2;
}

.social-icons a[aria-label="Facebook"]:hover {
  background-color: #1877f2;
}

.social-icons a[aria-label="Instagram"]:hover {
  background-color: #e4405f;
}

.social-icons a[aria-label="Email"]:hover {
  background-color: #ea4335;
}

.social-icons a[aria-label="LinkedIn"]:hover {
  background-color: #0a66c2;
}

.social-icons a[aria-label="YouTube"]:hover {
  background-color: #ff0000;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
