/* Footer Styles */
.footer {
    background: hsl(214, 48%, 28%);
    color: white;
    padding: 4rem 5% 2rem;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }
  
  .footer-column h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: hsl(214, 32%, 46%);
  }
  
  .footer-logo {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-about {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    color: hsl(220, 70%, 50%);
    transform: translateY(-3px);
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 0.8rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    color: white;
    padding-left: 5px;
  }
  
  .footer-newsletter input {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 50px;
    margin-bottom: 1rem;
  }
  
  .footer-newsletter button {
    width: 100%;
    padding: 0.8rem;
    background: hsl(220, 98%, 32%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .footer-newsletter button:hover {
    background: white;
    color: hsl(220, 48%, 28%);
  }
  
  .footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 1rem;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-payments {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .footer-social {
      justify-content: center;
    }
    
    .footer-column h3::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer-links a:hover {
      padding-left: 0;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }