footer {
    background-color: #121218;
    border-top: 1px solid #333;
    padding: 20px 0;
    width: 100%;
    color: #cbd5e0;
  }
  
  footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-column h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: white;
    position: relative;
  }
  
  .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #1d71f7;
  }
  
  .footer-column a, .footer-column p {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
  }
  
  .footer-column a:hover {
    color: white;
  }
  
  .resaux-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .resaux-icons a {
    background-color: #2d2d3a;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
  }
  
  .resaux-icons a:hover {
    transform: translateY(-3px);
  }
  
  .resaux-icons svg {
    width: 16px;
    height: 16px;
  }
  
  .footer-bottom {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
  }
  
  .payment-methods {
    display: flex;
    gap: 10px;
  }
  
  /* Responsive Footer */
  @media (max-width: 992px) {
    footer .container {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  }
  
  @media (max-width: 576px) {
    .footer-column h3 {
      font-size: 0.95rem;
    }
    
    .footer-column a, .footer-column p {
      font-size: 0.75rem;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  }