footer {
  width: 100%;
  padding-top: var(--section-margin);
  background: linear-gradient(135deg, var(--primary-color) 0%, #003399 100%);
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
footer h2{
  color: #FFF;
  font-size: var(--font-xxx);
  font-weight: bold;
  text-align: center;
  font-family: var(--font-en);
  margin-bottom: var(--section-margin6);
}
footer .logo {
  max-width: 300px;
  display: block;
  margin: 0 auto var(--section-margin6);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

footer .logo:hover {
  transform: translateY(-2px);
}

footer .footer_menu {
  width: 80%;
  min-width: 800px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto var(--section-margin6);
}
footer .footer_menu li{
  width: calc((100% - 40px) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
}


footer .footer_menu li a {
  width: 100%;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-size: var(--font-xx);
  transition: all 0.3s ease;
  padding: 20px 16px;
  border-radius: 50px;
  background: #FFF;
  backdrop-filter: blur(5px);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.0;
}


footer .copyright {
  text-align: center;
  font-size: 14px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  footer .footer_menu {
    width: 80%;
    min-width: initial;
    margin: 0 auto var(--section-margin6);
    flex-direction: column;
    gap: 15px;
  }
  
  footer .logo {
    max-width: 60%;
    margin:auto;
    display: block;
  }
  footer .footer_menu li{
    width: 100%;
  }
  footer .footer_menu li a {
    display: block;
    text-align: center;
  }
}




