/* Base styles */
body {
  font-family: 'DM Sans', sans-serif;
  background: #005eb8;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* HEADER - reuse header CSS from Privacy page */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #004b94;
  flex-wrap: wrap; 
}

.logo {
  max-height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-download {
  background: #ffd700;
  color: #004b94;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* HERO SECTION */
.about-hero {
  text-align: center;
  padding: 5rem 1.5rem;
  background: #0065d1;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
  color: #d9e8ff;
  max-width: 700px;
  margin: 0 auto;
}

/* TERMS CONTENT */
.terms-content {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: -3rem auto 4rem auto;
  background: rgba(0, 75, 148, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.terms-content h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  border-left: 4px solid #ffd700;
  padding-left: 0.8rem;
}

.terms-content p, 
.terms-content li {
  font-size: 1rem;
  color: #f0f8ff;
  margin-bottom: 1rem;
}

.terms-content a {
  color: #ffd700;
  text-decoration: underline;
}

.terms-content ul {
  margin-left: 1.5rem;
  padding-left: 0;
  list-style-type: disc;
}

/* FOOTER */
.footer {
  background: #004b94;
  padding: 2rem;
  text-align: center;
  color: #d9e8ff;
  font-size: 0.9rem;
}

.footer-links a {
  color: #ffd700;
  margin: 0 0.5rem;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .terms-content h2 {
    font-size: 1.5rem;
  }

  .terms-content {
    padding: 2rem 1rem;
  }
}
