body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background: #f7f9fb;
  color: #333;
}

.header {
  background: #072c50;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.nav a {
  color: white;
  margin-left: 1.5rem;
  text-decoration: none;
  font-size: 1rem;
}

.nav a.active {
  border-bottom: 2px solid #ff6f00;
}

.terms-hero {
  background: linear-gradient(120deg, #1e3c72, #2a5298);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.terms-hero h1 {
  font-size: 2.5rem;
}

.terms-content {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
  animation: slideUp 1.2s ease-in-out;
}

.terms-content h2 {
  color: #072c50;
  margin-top: 2rem;
}

.terms-content p {
  line-height: 1.6;
}

.footer {
  background: #072c50;
  color: white;
  padding: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-content div {
  margin: 1rem 0;
}

.map iframe {
  width: 100%;
  height: 250px;
  border: none;
  margin-top: 1rem;
  border-radius: 10px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
