.footer-new {
  width: 100%;
  padding-left: 70px;
  padding-right: 70px;
  padding-bottom: 10px;
  background: white;
  margin-top: 140px;
}

.footer-logo {
  height: 50px;
  width: auto;
}

/* Footer links */
.footer-links {
  gap: 60px; /* space between columns */
}


.footer-heading {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 18px;
  color: black;
}

.footer-right img{
  border-radius: 6px;
  width: auto;
  
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list li a {
  color: black;
  text-decoration: none;
  font-size: 16px;
}

/* Legal/Disclaimer */
.footer-legal {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.6;
  color: #000000B2;
}

.footer-contact {
  font-size: 14px;
  color: #000000B2;
  margin-top: 10px;
}

.footer-social {
  margin-top: 15px;
  font-size: 14px;
  color: #000000B2;
}

.footer-social .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.footer-social .social-icons img {
  width: 20px;
  height: 20px;
}

.footer-divider {
  border: none;
  border-top: 2px solid #E1EAF0;
  margin: 18px 0;
}


.footer-reserved {
  font-size: 14px;
  color: #000000B2;
}

.footer-trademark {
  font-size: 12px;
  text-align: center;
  color: #000000B2;
}

.footer-column h6 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* Chevron styling */
.footer-column h6 .footer-chevron {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-new {
    margin-top: 70px;
    padding: 36px 20px;
  }

  /* Footer links stacked vertically */
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  /* Hide lists by default */
  .footer-list {
    display: none;
    margin-top: 8px;
  }

  .footer-heading{
    font-size: 14px;
    margin-bottom: 0;
  }

  .footer-list li a {
    font-size: 12px;
  }

  /* Show list when active */
  .footer-column.active .footer-list {
    display: block;
  }

  /* Show chevrons on mobile */
  .footer-column h6 .footer-chevron {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  /* Rotate chevron when active */
  .footer-column.active h6 .footer-chevron {
    transform: rotate(180deg);
  }
  .footer-logo {
  height: 30px;
  width: 100px;
}
.footer-right img{
  border-radius: 6px;
  width: 120px;
  
}

}