 .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }


/* Footer */
  .footer {
    background-color: #0f172a;
    color: var(--foreground);
    padding: 4rem 0 2rem;
    position: relative;
    
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .footer-info {
    max-width: 300px;
  }
  
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background-image: linear-gradient(to right, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .footer-info p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  
  .footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-links a {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: color 0.2s ease;
    position: relative;
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: var(--primary);
  }
  
  .footer-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
  }
  
  .footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .footer-links li {
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  
  .footer-bottom p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  .footer-legal {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-legal a {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: color 0.2s ease;
  }
  
  .footer-legal a:hover {
    color: var(--primary);
  }