.footer {
    background-color: #0e0e0e;
    color: #fff;
    padding: 60px 20px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 120px;
    text-align: left;
  }
  
  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-left h3,
  .footer-center h4,
  .footer-right h4 {
    color: #f1c40f;
    margin-bottom: 15px;
  }
  
  .footer-left p,
  .footer-center p {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .footer-center i {
    margin-right: 10px;
    color: #f1c40f;
  }
  
  .social-icons a {
    color: #f1c40f;
    font-size: 1.4rem;
    margin-right: 15px;
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-left,
    .footer-center,
    .footer-right {
      min-width: 100%;
    }
  
    .social-icons a {
      margin: 0 10px;
    }
  }
  