footer {
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-section {
  flex: 1;
  margin: 1rem;
  min-width: 200px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffeb3b;
}

.footer-section p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.footer-section a {
  color: inherit;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-icon {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.social-icon__item {
  margin: 0 0.5rem;
}

.social-icon__link {
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon__link:hover {
  color: #ffeb3b;
  transform: scale(1.2);
}

.footer-text {
  margin-top: 1rem;
  font-size: 0.9rem;
}
