.footer-neon {
  background: linear-gradient(135deg, #1e3a8a, #8b5cf6);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.footer-neon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0.3;
  animation: neonPulse 8s ease-in-out infinite;
}

.footer-neon::before {
  pointer-events: none;
  z-index: 0;
}
.footer-neon {
  position: relative;
  z-index: 1;
}

.footer-neon .footer-nav a {
  color: #e0e0ff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-neon .footer-nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}
.footer-neon .form-control {
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  transition: all 0.3s ease;
}
.footer-neon .form-control:focus {
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
  background: rgba(255, 255, 255, 0.1);
}
.footer-neon .btn-primary {
  background: #8b5cf6;
  border: none;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}
.footer-neon .btn-primary:hover {
  background: #a78bfa;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}
.footer-neon .social a {
  color: #e0e0ff;
  font-size: 20px;
  transition: all 0.3s ease;
}
.footer-neon .social a:hover {
  color: #ffffff;
  transform: scale(1.2);
}
@keyframes neonPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }
    
        @media (max-width: 768px) {
      .header-inner {
        flex-direction: column;
        text-align: center;
      }
      .header-v1, .header-v2, .header-v3 {
        padding: 20px 0;
      }
      .logo img {
        max-height: 50px;
        margin-bottom: 10px;
      }
      .nav ul {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
      }
      .header-v2 .nav a {
        font-size: 16px;
      }
      .header-v3 .nav ul li a {
        font-size: 18px;
      }
    }
    
    @media (max-width: 480px) {
      .nav ul {
        flex-direction: column;
        gap: 10px;
      }
      .nav a {
        font-size: 16px;
      }
    }