/* === FOOTER WRAPPER === */
.footer {
    width: 100%;
    background-color: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    font-family: Roboto, Arial, sans-serif;
    color: #3c4043;
  }
  
  /* Centers the content like Google */
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 32px 32px; /* symmetric padding like Google */
    box-sizing: border-box;
  }
  
  /* === TOP GRID — 4 COLUMNS === */
  .footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 64px;
    row-gap: 32px;
    margin-bottom: 40px;
  }
  
  .footer-column h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 12px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column li {
    margin-bottom: 10px;
  }
  
  .footer-column a {
    text-decoration: none;
    color: #3c4043;        /* Google gray */
    font-size: 0.9rem;
    transition: color 0.2s ease;
  }
  
  .footer-column a:hover {
    color: #202124;        /* darker gray, Google-style */
  }
  
  /* === BOTTOM AREA === */
  .footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .footer-logo img {
    height: 22px;
    width: 22px;
  }
  
  .footer-logo span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #202124;
  }
  
  /* Small inline links (Home, Privacy, Terms...) */
  .footer-links {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  
  .footer-links a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #3c4043;
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: #202124;    /* darker gray, not blue */
  }
  
  /* Copyright */
  .footer-copy {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #5f6368;
  }
  
  /* === RESPONSIVE === */
  @media (max-width: 900px) {
    .footer-top {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .footer-top {
      grid-template-columns: 1fr;
    }
  }
  