.footer-section {
    background-color: #110D7F;
    color: white;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-info h4,
  .footer-links h4,
  .footer-map h4 {
    font-size: 1.1rem;
    color: #e17000;
    margin-bottom: 10px;
  }
  
  .footer-info p,
  .footer-links ul li a {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #f2f2f2;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li a {
    text-decoration: none;
    display: block;
    transition: color 0.3s;
  }
  
  .footer-links ul li a:hover {
    color: #ffff00;
  }
  
  .footer-social {
    margin-top: 15px;
  }
  
  .footer-social a {
    color: white;
    font-size: 1.1rem;
    margin-right: 10px;
    transition: color 0.3s;
  }
  
  .footer-social a:hover {
    color: #e17000;
  }
  
  .footer-map iframe {
    border-radius: 10px;
    width: 100%;
    height: 180px;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    border-top: 1px solid #ffffff22;
    padding-top: 20px;
    color: #ddd;
  }
  
  .footer-bottom a {
    color: #ffdd00;
    text-decoration: none;
  }
  .footer-bottom p {
    text-align: center
    ;
  }
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }
  
    .footer-map iframe {
      height: 200px;
    }
  
    .footer-social {
      justify-content: center;
    }
    .footer-info p{
      text-align: center;
    }
  }
  