/* Footer 1: Logo top, links center, copyright bottom */
.footer1 {
  width: 100%;
  padding: 40px 40px 30px;
  background-color: var(--always-black);
}

.footer1-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer1-logo {
  width: 80px;
  height: 80px;
  background-image: url('../img/logo2.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.footer1-links {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer1-links {
  font-size: 18px;
  font-weight: 500;
  color: var(--always-white);
  text-decoration: none;
  font-family: Arial, sans-serif;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.footer1-links a {
    text-decoration: none;
}

.footer1-link:hover {
  opacity: 0.7;
}

.footer1-disclaimer {
  width: 100%;
  max-width: 800px;
  text-align: center;
  margin-bottom: 20px;
}

.footer1-disclaimer-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--always-white);
  margin: 0 0 16px 0;
  font-family: Arial, sans-serif;
}

.footer1-disclaimer-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--always-white);
  margin: 0;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.footer1-responsible-logos {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer1-responsible-logo {
  height: 60px;
  width: auto;
  transition: opacity 0.3s ease;
}

.footer1-responsible-logo:hover {
  opacity: 0.7;
}

.footer1-copyright {
  font-size: 16px;
  font-weight: 400;
  color: var(--always-white);
  margin: 0;
  font-family: Arial, sans-serif;
  text-align: center;
}

@media (max-width: 768px) {
  .footer1 {
    padding: 30px 20px;
  }

  .footer1-container {
    gap: 24px;
  }

  .footer1-logo {
    width: 60px;
    height: 60px;
  }

  .footer1-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer1-link {
    font-size: 16px;
  }

  .footer1-copyright {
    font-size: 14px;
  }

  .footer1-disclaimer-title {
    font-size: 20px;
  }

  .footer1-disclaimer-text {
    font-size: 13px;
  }

  .footer1-responsible-logos {
    gap: 20px;
  }

  .footer1-responsible-logo {
    height: 50px;
  }
}
