:root {
  --primary-color: #fd3008;
  --secondary-color: #00a896;
  --neutral-light-color: #f8f9fa;
  --neutral-dark-color: #2d2d2d;
  --accent-color: #ffd166;
  --gray-shade-color: #dee7e7;
  --anti-flash-white: #f4f6f6;
}

.footer {
  padding: 3rem 0 1rem;
  margin-top: 3rem;
  font-size: 0.95rem;
  background-color: var(--anti-flash-white);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.footer-brand .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-brand .logo span {
  color: var(--primary-color);
}

.footer-brand p {
  margin: 0.5rem 0 1rem;
  line-height: 1.4;
}

.social-links a {
  display: inline-block;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
}

.footer-links h3,
.footer-newsletter h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-newsletter p {
  margin-bottom: 0.8rem;
}

.footer-newsletter form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.footer-newsletter button {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 4px;
  background: var(--primary-color);
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: var(--secondary-color);
}

.footer-bottom {
  background: var(--neutral-dark-color);
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #bbb;
}
