.footer {
  background-color: #0f151d;
  padding: 30px 20px 10px;
}

.footer-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #1f1f1f;
}

.footer-column {
  flex: 1 1 auto;
  margin: 10px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #eee;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 10px;
}

.footer-column ul li {
  margin: 6px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #aaa;
  font-size: 13px;
  line-height: 1.4;
}

.footer-contact {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 20px 0px;
border-bottom: 1px solid #1f1f1f;
}

.footer-item {
flex: 1 1 220px;
display: flex;
align-items: center;
margin: 10px;
color: #aaa;
width: 45%;
text-align: left;
}

.footer-item img {
height: 40px;
margin-right: 10px;
width: 40px;
object-fit: contain;
}

.footer-item div {
font-size: 13px;
}

.footer-legal-links {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

.footer-legal-links a {
  color: #888;
  text-decoration: none;
  margin: 0 6px;
}

.footer-icons {
  text-align: center;
  margin: 15px 0 5px;
}

.footer-icons i {
  margin: 0 6px;
  font-size: 1.2rem;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #777;
  padding-top: 10px;
  border-top: 1px solid #1f1f1f;
  line-height: 1.5;
}

.fct_img {
  display: none;
}

@media (max-width: 768px) {
  .footer-column ul li a {
    font-size: 1rem;
  }
  .footer-column {
    -webkit-tap-highlight-color: transparent;
  }

  .footer-column ul {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }

  .footer-column.active ul {
    max-height: 500px;
    opacity: 1;
  }
  .footer-column h4 {
      cursor: pointer;
  }

  .footer-column h4::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
  }

  .footer-column.active h4::after {
    transform: rotate(180deg);
  }

  .fct_img {
    display: block;
  }
  .fct_img img{
    width: 100%;
    height: auto;
  }

  .fc_img {
    display: none;
  }

  .footer-section {
    flex-direction: column;
    text-align: left;
  }

  .footer-contact {
      flex-direction: column;
      align-items: flex-start;
  }
  .footer-item {
      width: 100%;
      margin-bottom: 20px;
      flex: 1 1 100%;
  }

  .footer-icons i {
    margin: 5px;
  }
}