.site-footer {
  background: #fff;
  padding: 50px 25px 20px 25px;
  border-top: 1px solid #ddd;
  font-family: Arial, sans-serif;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
  max-width: 1400px;
  margin: auto;
}
.footer-column h2 {
  font-family: Madefor-Text-MediumBold, sans-serif;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
  color: black;
  cursor: pointer;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul li a {
  font-family: Madefor-Text, sans-serif;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-column ul li a:hover {
  color: #0073e6;
}
.footer-column p {
  font-size: 14px;
  line-height: 1.6;
}
.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #444;
  border-top: 1px solid #eee;
  padding-top: 25px;
}
.footer-bottom a {
  margin: 0 10px;
  color: #000;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom span {
  display: inline-block;
  margin-left: 10px;
}
@media (max-width:1024px){
  .footer-container {grid-template-columns: repeat(3,1fr);}
  .navbar {padding:0;}
}
@media (max-width:768px){
  .footer-container {grid-template-columns: repeat(2,1fr);}
}
@media (max-width:600px){
  .footer-container {
    grid-template-columns:1fr;
    gap:20px;
    max-width:500px;
  }
  .line{border-bottom:1px solid #ccc;}
  .footer-column ul {
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease-in-out;
    gap:30px;
    font-size:15px;
    margin-top:20px;
  }
  .footer-column.active ul {
    max-height:500px;
    margin-top:20px;
    font-size:14px;
  }
  .footer-column h2::after {
    content:"";
    float:right;
    display:inline-block;
    width:8px;
    height:8px;
    border-right:1.5px solid black;
    border-bottom:1.5px solid black;
    transform:rotate(45deg);
    margin-left:8px;
    transition:transform .3s ease;
    margin-top:8px;
  }
  .footer-column.active h2::after {
	  transform:rotate(-135deg);
	}
  .footer-column ul li {
	  margin-bottom:20px;font-size:16px;
	}
	}
	
.logo {
	margin-bottom:15px;
	}