.footer {
  background-color: #000;
  padding-bottom: 180px;
}

.footer-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 60px;
}

.footer-container {
  display: flex;
  gap: 120px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-left {
  max-width: 553;
}

.footer-center {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-grow: 1;
}

.footer-left a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-left a:hover {
  opacity: 0.7;
}

.footer-logo {
  width: 54px;
  height: 54px;
  margin-bottom: 56px;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.55);
}

.footer-right {
  display: flex;
  justify-content: center;
}

.footer-judas-title {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  line-height: 145%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}

.footer-columns {
  display: flex;
  gap: 80px;
  justify-content: center;
}

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

.footer-column-header {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 8px;
  text-wrap: nowrap;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 1024px) {
  .footer-container {
    gap: 80px;
    max-width: 960px;
  }

  .footer {
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 100px;
  }

  .footer-line {
    margin-bottom: 40px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    order: 2;
    max-width: 100%;
  }

  .footer-logo {
    margin: 0 auto 40px;
  }

  .footer-center {
    order: 1;
  }

  .footer-right {
    order: 3;
    width: 100%;
  }

  .footer-columns {
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-column {
    min-width: 150px;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding-bottom: 80px;
  }

  .footer-line {
    margin-bottom: 30px;
  }

  .footer-container {
    gap: 30px;
    padding: 0 15px;
  }

  .footer-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 30px;
  }

  .footer-copyright {
    font-size: 14px;
  }

  .footer-judas-title {
    font-size: 20px;
  }

  .footer-columns {
    gap: 40px;
  }

  .footer-column {
    min-width: 120px;
  }

  .footer-column-header {
    font-size: 14px;
  }

  .footer-link {
    font-size: 14px;
  }
}
