*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0f1923;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #d4895c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  flex: 1;
}

h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #e2e8f0;
}

.meta {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

ul li {
  padding: 6px 0;
  color: #e2e8f0;
}

ul li::before {
  content: "•";
  color: #d4895c;
  font-weight: bold;
  margin-right: 10px;
}

.nav-links {
  margin-bottom: 24px;
}

.nav-links a {
  margin-right: 20px;
  font-weight: 500;
}

.faq {
  margin-top: 32px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
}

.faq-item span {
  color: #94a3b8;
}

footer {
  border-top: 1px solid #1e293b;
  padding: 24px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
}

footer .footer-brand {
  color: #ffffff;
  font-weight: 600;
}

footer .footer-tagline {
  color: #94a3b8;
  margin: 4px 0 8px;
}

@media (max-width: 480px) {
  .container {
    padding: 40px 16px 32px;
  }

  h1 {
    font-size: 1.8rem;
  }
}
