footer {
    background-color: #f9fafb; /* bg-background-light */
    border-top: 1px solid #e2e8f0; /* border-slate-200 */
    color: #1e293b;
    padding: 3rem 1rem;
  }
  
  
  footer .container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
  
  @media (min-width: 768px) {
    footer .container {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    footer .container {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  footer h2 {
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  footer p {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #475569;
  }
  
  
  footer h3 {
    font-weight: 600;
    color: #1e293b;
  }
  
  
  footer ul {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
  }
  
  footer ul li a {
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  
  footer ul li a:hover {
    color: #ef4444; /* hover:text-primary */
  }
  
  footer .social {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
  }
  
  footer .social a {
    color: #64748b;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
  }
  
  
  footer .social a:hover {
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
    transform: translateY(-2px);
  }
  
  /* Instagram icon specific styling */
  footer .social a svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
  }
  
  footer .social a:hover svg {
    transform: scale(1.1);
  }
  
  footer .bottom {
    border-top: 1px solid #e2e8f0;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
  }
  
  