html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

footer {
  background-color: #313030;
  color: white;
  width: 100%;
}

.footer-top {
  padding: 40px 0;
}

.footer-bottom {
  background-color: #333;
  color: #fff;
  text-align: left;
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #f1f1f1;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.section {
  flex: 1;
  min-width: 200px;
  margin-right: 15px;
}

footer h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: black;
}

footer p,
footer a {
  font-size: 14px;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
}

footer a:hover {
  color: rgb(105, 70, 3);
}

.social-icons a {
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: rgb(105, 70, 3);
}

.contact-logo {
  width: 150px;
  height: 80px;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-logo {
    width: 200px;
    height: 100px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom p {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  footer h3 {
    font-size: 18px;
  }

  footer p,
  footer a {
    font-size: 12px;
  }

  .social-icons a {
    font-size: 18px;
  }
}