  /* --- Footer CSS --- */
  .footer {
    background-color: #555555;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
  }
  .footer-flex-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 90px;
    gap: 2rem;
  }
  .container,
  .container2 {
    flex: 1;
    min-width: 280px;
  }

  /* Useful links */
  .usefullink {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .footer-links-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
    padding-left: 0;
    margin: 0;
  }
  .footer-links-list li {
    list-style: none;
    display: flex;
    align-items: center;
  }
  .footer-links-list li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links-list li a:hover {
    color: #0d6efd;
  }
  .footer-links-list li span.material-symbols-outlined {
    font-size: 1.4rem;
    margin-right: 0.5rem;
    color: white;
  }
  .footer-below-text {
    margin-top: 1rem;
    font-size: 1.2rem;
  }

  /* Social links */
  .sociallink {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 0;
    margin: 1rem 0 0 0;
  }
  .sociallink li img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
  .social-text {
    text-align: right;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .last-updated {
    color: #ccc;
    text-align: right;
    font-size: 1rem;
    margin-top: 0px;
  }
  
  .ama img{
          float: right;

  }

  /* Responsive */
 /* Responsive for Mobile */
@media (max-width: 768px) {
  .footer-flex-wrapper {
    flex-direction: column;
    padding: 0 20px;
    gap: 1rem;
  }

  .container,
  .container2 {
    min-width: 100%;
    margin: 0;
  }

  .container2 {
    margin-top: 1rem;
    text-align: left;
  }

  .social-text {
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
  }

  .sociallink {
    justify-content: flex-start;
    margin-top: 0.5rem;
  }

  .footer-links-list {
    grid-template-columns: 1fr; /* Stack links vertically */
  }

  .footer-below-text {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1rem;
  }

  .last-updated {
    text-align: left;
    font-size: 0.9rem;
  }
  
  .ama img{
          float: left;

  }
}
