.footer {
  background: #222831;
  color: #fdfdfd;
  padding: 2rem 0 0.5rem 0;
  font-size: 1rem;
}
.footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-section {
  flex: 1 1 200px;
  margin-bottom: 2rem;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.footer-about {
  margin-bottom: 1rem;
  color: #aaa;
}
.social-links {
  margin-top: 1rem;
}
.social-icon {
  color: #fdfdfd;
  margin-right: 0.7rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.social-icon:hover {
  color: #ffe066;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #fdfdfd;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #ffe066;
}
.footer-newsletter {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.footer-newsletter input[type="email"] {
  padding: 0.5rem;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
  font-size: 1rem;
}
.newsletter-btn {
  padding: 0.5rem 0.8rem;
  border: none;
  background: #ffe066;
  color: #222831;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s;
}
.newsletter-btn:hover {
  background: #f9c74f;
}
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
}
.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom-links a:hover {
  color: #ffe066;
}
@media (max-width: 900px) {
  .footer .row {
    flex-direction: column;
    gap: 0;
  }
  .footer-section {
    margin-bottom: 1.5rem;
  }
}