ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section {
  background: #151414;
  padding: 40px 0;
  color: #fff;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.footer-widget, .single-cta {
  flex: 1;
  margin-bottom: 30px;
  max-width: 300px;
}

.footer-logo img {
  max-width: 200px;
  margin-bottom: 10px;
}

.footer-text p {
  color: #7e7e7e;
  font-size: 14px;
  line-height: 1.8;
}

.footer-widget-heading h3 {
  font-size: 18px;
  position: relative;
  margin-bottom: 20px;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #ffd700;
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
  transition: color 0.3s;
}

.footer-widget ul li a:hover {
  color: #ffd700;
}

.single-cta {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.single-cta i {
  color: #ffd700;
  font-size: 24px;
  margin-right: 15px;
}

.cta-text h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.cta-text span {
  color: #757575;
  font-size: 14px;
}

.copyright-area {
  background: #202020;
  padding: 15px 0;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.copyright-text p, .footer-menu a {
  color: #878787;
  font-size: 14px;
}

.footer-menu ul {
  display: flex;
  gap: 15px;
}

.footer-menu a:hover {
  color: #ffd700;
}


@media (max-width: 576px) {
  .footer-widget:nth-child(3) {
    display: none;
  }
  /* .footer-section {
    padding: 30px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-widget-heading h3 {
    font-size: 14px;
  }

  .single-cta {
    flex-direction: column;
    text-align: center;
  }

  .single-cta i {
    margin: 0 0 10px 0;
  }

  .cta-text h4 {
    font-size: 13px;
  }

  .cta-text span {
    font-size: 12px;
  }

  .copyright-text p {
    font-size: 12px;
  } */
}