.footer-content {
  display: flex;
  gap: 80px;
  justify-content: center;
  padding: 160px 32px 32px 32px;
  font-size: 14px;
  color: var(--gray);
}

.footer-content .col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-content .col .title {
  font-size: 16px;
  font-weight: bold;
  color: var(--dark-gray);
}

.footer-content .col a {
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content .col a:hover {
  color: var(--orange);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-content {
    gap: 0px;
    flex-wrap: wrap;
  }
  .footer-content .col {
    width: 33%;  
  }
  .footer-content .col:first-child {
    width: 100%;
    display: flex;
    flex-direction: row;
    order: calc(infinity);
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 64px 32px 32px 32px;
  }
  .footer-content .col:first-child {
    width: 45%;
    display: flex;
    flex-direction: column;
    order: calc(-infinity);
    align-items: baseline;
    margin-top: 0rem;
  }
  .footer-content .col {
    width: 45%;
  }
}