/* <=================== Footer ===================> */
.main-footer {
  background-color: #082A56; 
  color: white;
  padding: 60px 5% 20px 5%;
  font-family: 'Inter', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
  padding-bottom: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap; 
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  color: white;
  font-size: 38px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-socials a:hover {
  opacity: 1;
}

.footer-brand img {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  border-radius: 30px;
}

.footer-brand h2 {
  font-size: 35px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-column h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  text-align: left; 
}

.footer-column a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-column a:hover {
  opacity: 1;
  text-decoration: underline;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: white;
}

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

  .footer-brand {
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-links {
    gap: 30px;
    justify-content: center;
  }

  .footer-column h3 {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;

  }
}