/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0 20px 40px 20px;
  background-color: #f9fafb;
  color: #111827;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
  margin-bottom: 30px;
}

header img.logo {
  height: 50px;
  margin-right: 15px;
}

header h1 {
  font-weight: 600;
  font-size: 1.8rem;
  margin: 0;
  color: #111827;
}

nav {
  margin-top: 15px;
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
  text-align: center;
  font-size: 0.9rem;
}

nav a {
  color: #3b82f6;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #2563eb;
}

h2 {
  color: #1f2937;
  margin-top: 0;
}

hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 30px 0;
}

footer {
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 50px;
}

p strong, b {
  color: #ef4444; /* Danger red for disclaimers */
}

@media (max-width: 600px) {
  body {
    padding: 15px 10px 30px 10px;
  }

  header h1 {
    font-size: 1.5rem;
  }

  header img.logo {
    height: 40px;
    margin-right: 10px;
  }

  nav a {
    margin: 0 10px;
    font-size: 0.85rem;
  }
}

