.footer {
  background: #0d1b2a;
  color: #fff;
  padding: 40px 20px;
  font-family: "Segoe UI", sans-serif;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f5e6ca;
}
.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #ddd;
  text-decoration: none;
}
.footer-section a:hover {
  color: #c28e0e;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 8px;
}
.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
}
.contact-form input,
.contact-form textarea,
.newsletter input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: none;
  border-radius: 6px;
}
.contact-form button,
.newsletter button {
  background: #c28e0e;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}
.contact-form button:hover,
.newsletter button:hover {
  background: #a3720c;
}
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
}
