.footer {
  background: #181818;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 0;
  margin-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 48px 5vw 32px 5vw;
}

.footer-box h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 18px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 14px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.footer-box ul li a:hover {
  color: #fff;
}

.footer-box.newsletter p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  margin-top: 8px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 2px 0 0 2px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  padding: 0 24px;
  background: #fff;
  color: #181818;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.newsletter-form button:hover {
  background: #e0e0e0;
}

.footer-bar {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5vw;
  font-size: 1rem;
  border-top: 1px solid #222;
}

.footer-copyright span {
  color: #fff;
  font-weight: bold;
}

.footer-social a {
  color: #ccc;
  margin-left: 18px;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 4vw 24px 4vw;
  }
  .footer-bar {
    flex-direction: column;
    gap: 10px;
    padding: 14px 4vw;
    font-size: 0.95rem;
  }
}