.footer-section {
  background: #fd5702;
  color: #fff;
  padding: 40px 20px 20px 20px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  justify-content: center;
}


.footer-logo img {
  width: 150px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-weight: 600;
  line-height: 1.4;
}

.footer-menu h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

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

.footer-menu ul li {
  margin-bottom: 15px;
}

.footer-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-menu ul li a:hover {
  opacity: 0.8;
}

.footer-contact p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.9rem;
    width: 90%;
    align-items: center;
    margin: 0 auto;
}

.footer-left {
  margin: 0;
}

.footer-links a {
  margin-left: 15px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 425px) {
 .footer-container {
  width: 100%;
    gap: 10px;
 }
 
 .footer-menu h3, .footer-contact h3{
    font-size: 0.8rem;
    margin-bottom: 15px;
 }

 .footer-menu ul li {
    margin-bottom: 5px;
 }

 .footer-logo img{
    width: 90px;
    margin-bottom: 10px;
}

 .footer-menu ul li a {
    font-size: 0.7rem;
 }
 
 .footer-contact p {
    margin-bottom: 5px;
    font-size: 0.7rem;
 }
 .footer-bottom {
    font-size: 0.52rem;
 }
 .footer-links a{
    margin-left: 5px;
  }
}