.footer-container {
  background: #161925;
  color: white;
  padding: 60px 5% 30px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff00;
  color: white;
  font-size: 24px;
  font-weight: bold;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-slogan {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links-section {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  flex: 2;
}

.footer-links-group {
  min-width: 150px;
}

.footer-links-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links-group a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links-group a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #0062FF;
  transition: width 0.3s ease;
}

.footer-links-group a:hover {
  color: white;
  padding-left: 10px;
}

.footer-links-group a:hover:before {
  width: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
}

.footer-copyright {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal-links a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #0062FF;
  transition: width 0.3s ease;
}

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

.footer-legal-links a:hover:after {
  width: 100%;
}

@media (max-width: 768px) {
  .footer-main-section {
    flex-direction: column;
  }
  
  .footer-links-section {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-legal-links {
    flex-wrap: wrap;
    gap: 15px;
  }
}