.footer {
    background: #111827;
    color: #fff;
    margin-top: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .footer-container {
    max-width: 75rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  @media (min-width: 448px) {
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 448px) {
    .footer-grid {
      grid-template-columns: repeat(5, 1fr);
    }
  }
  
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-col-logo {
    grid-column: span 1;
  }
  @media (min-width: 448px) {
    .footer-col-logo {
      grid-column: span 2;
    }
  }
  @media (min-width: 448px) {
    .footer-col-logo {
      grid-column: span 2;
    }
  }
  .footer-logo {
    margin-bottom: 1rem;
  }
  
  .footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 1rem;
  }
  
  .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s;
    font-size: 1rem;
  }
  .footer-link:hover {
    color: #60a5fa;
  }
  
  .footer-col-payment {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .footer-payment-center {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-payment-text {
    color: #14c572;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  
  .footer-bottom {
    border-top: 1px solid #d1d5db;
    margin-top: 1.5rem;
    padding-top: 2rem;
    text-align: center;
  }

  .footer-download {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }

  .footer-download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.2s ease;
  }

  .footer-download-link:hover {
    color: #3ddc84;
  }

  .footer-app-icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
  }

  .footer-sites {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .footer-site-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
  }

  .footer-site-link:hover {
    color: #f97316;
  }

  .footer-site-separator {
    color: #4b5563;
  }

  .footer-bottom-text {
    font-size: 0.875rem;
    color: #9ca3af;
  }