.footer {
  background: #24477a;
  color: #fff;
  padding: 2rem 0 1rem 0;
  font-family: 'Poppins', Arial, sans-serif;
}
.footer-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.footer-terms {
  font-size: 1rem;
  color: #dde6f3;
  margin-bottom: 1.3rem;
  line-height: 1.5;
}

.footer-terms-content {
  margin-top: 0.5rem;
}

.footer-terms-content p {
  margin: 0.3rem 0;
  font-size: 1rem;
  color: #dde6f3;
  line-height: 1.5;
}
.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-contact {
  font-weight: 600;
  color: #ffd700;
  text-decoration: none;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}
.footer-contact:hover {
  color: #fffbe3;
  text-decoration: underline;
}
.footer-address {
  font-size: 1rem;
  color: #dde6f3;
}
.footer-copy {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: #aac3e6;
}

/* Responsivitet */
@media (min-width: 600px) {
  .footer-row {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}