.footer {
    background-color: #f5f5f5;
    padding: 3rem 2rem;
    font-family: sans-serif;
    color: #222;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-left {
    margin-top: 100px;
    flex: 1 1 200px;
    text-align: center;
  }
  
  .footer-logo {
    max-width: 300px;
    margin-bottom: 0.5rem;
  }
  
  .slogan {
    font-size: 1.2rem;
    font-family: Segoe UI;
  }
  
  .footer-center {
    flex: 1 1 300px;
    text-align: center;
  }
  
  .social-text {
    font-size: 1.2rem;
    margin-top: 2rem;
    font-family: Segoe UI;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 60px;
  }
  
  .social-icons img {
    width: 28px;
    height: 28px;
  }
  
  .footer-right {
    flex: 1 1 200px;
  }
  
  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .image-grid img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
  
  /* Bottom nav links */
  .footer-nav {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 50px;
  }
  
  .footer-nav a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer-nav a:hover {
    text-decoration: underline;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-left, .footer-center, .footer-right {
      text-align: center;
    }
  }
  





  @media (max-width: 768px) {
    .footer-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2rem;
    }
  
    .footer-left, .footer-center, .footer-right {
      width: 100%;
      max-width: 300px;
    }
  
    .footer-logo {
      max-width: 120px;
      margin: 0 auto 0.5rem;
    }
  
    .slogan {
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }
  
    .social-text {
      font-size: 0.9rem;
      line-height: 1.6;
      padding: 0 1rem;
    }
  
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
    }
  
    .social-icons img {
      width: 32px;
      height: 32px;
    }
  
    .footer-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: 1.5rem 0;
      font-size: 1rem;
    }
  
    .footer-nav a {
      color: #000;
      text-decoration: none;
      font-weight: 500;
    }
  
    .image-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      padding: 0 1rem 2rem;
    }
  
    .image-grid img {
      width: 100%;
      border-radius: 4px;
    }
  }
  