* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.footer {
  background: #111827;
  color: #e5e7eb;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 70px 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand h2 {
  color: #b76e79;
  font-size: 28px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: #1f2937;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #b76e79;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #f9fafb;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
}

.footer-links ul li:hover {
  color: #b76e79;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
  color: #b76e79;
}

.newsletter {
  display: flex;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 6px 0 0 6px;
}

.newsletter button {
  background: #b76e79;
  border: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.newsletter button:hover {
  background: #9e5b64;
}

.footer-bottom {
  background: #020617;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
