.footer {
  background: #f7941e;
  color: #000;
}
.footer-container {
  max-width: 1200px;
  margin: 0 40px 0 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  flex-shrink: 0;
}
.footer .logo-section,
.footer .links-section,
.footer .social-section {
  flex: 1 1 25%;
  padding-top: 20px;
}

.footer .links-section,
.footer .social-section {
  padding-top: 40px;
}
.logo-section {
  background-color: #feb863;
  padding: 0 0 20px 30px;
}
.footer h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  color: black
}
.logo-section img {
  height: 80px;
  width: 80px;
}
.ft-head {
  display: flex;
  align-items: center;
  justify-content: start;
}
.logo-section h3 {
  justify-self: center;
  align-self: center;
  padding-top: 10px;
}
.footer p,
.footer a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  line-height: 1.6;
  font-weight: 500;
}
.footer a:hover {
  text-decoration: underline;
}
.social-icons i {
  width: 15px;
  font-size: 1.5rem;
  margin-right: 10px;
}
.newsletter input[type="email"] {
  width: 70%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  max-width: 60%;
  min-width: 50%;
}
.newsletter button {
  padding: 10px 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  margin: 10px 0;
}
.footer-bottom {
  border-top: 2px solid #a17f03;
  text-align: center;
  padding: 8px 0;
  font-weight: 400;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 30px;
    gap: 0;
    font-weight: 600;
  }
  .footer .links-section,
  .footer .social-section {
    margin: 0 20px;
  }
  .footer .social-section {
    margin-bottom: 20px;
  }
  .newsletter input[type="email"] {
    width: 100%;
    margin-top: 10px;
  }
  .footer-bottom {
    padding: 8px 10px;
  }
}
