footer {
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
    color: white;
    padding: 3rem 2rem;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .office-info,
  .quick-links {
    flex: 1;
  }
  
  .office-info h3,
  .quick-links h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .office-info p {
    margin-bottom: 1rem;
  }
  
  .google-map iframe {
    width: 100%;
    height: 300px;
    border: none;
  }
  
  .quick-links ul {
    list-style-type: none;
    padding: 0;
  }
  
  .quick-links li {
    margin-bottom: 0.5rem;
  }
  
  .quick-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .quick-links a:hover {
    color: #fdbb2d;
  }
  
  .copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
  }