/* FOOTER */
footer {
  background: var(--footer-background);
  color: var(--footer-text);
  padding: 80px 20px 30px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-brand p {
  line-height: 1.8;
  color: var(--footer-text);
  max-width: 280px;
}

.footer-contact h4,
.footer-social h4 {
  color: var(--secondary-light);
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-contact p {
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 15px;
}

.footer-contact a,
.footer-social a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  color: var(--primary-color);
}

.footer-social a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  color: var(--dark-gray);
}