* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #ffffff;
  color: #1f2933;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.header {
  border-bottom: 1px solid #e5e7eb;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
}

.hero {
  background: #f9fafb;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.subtitle {
  max-width: 700px;
  margin: auto;
  margin-bottom: 2rem;
  color: #4b5563;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: #f9fafb;
}

h3 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.step {
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  border-radius: 8px;
}

.benefits li {
  margin-bottom: 0.8rem;
  list-style: none;
}

.disclaimer {
  max-width: 800px;
  color: #6b7280;
}

.form {
  max-width: 500px;
  margin-top: 1.5rem;
}

.form input,
.form select {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  border: 1px solid #2563eb;
  color: #2563eb;
}

.footer {
  border-top: 1px solid #e5e7eb;
  text-align: center;
  padding: 1.5rem;
  color: #6b7280;
}

.link-status {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.link-status h5 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #111827;
}

.link-status ul {
  list-style: none;
  padding: 0;
}

.link-status li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #374151;
}

.link-status a {
  color: #2563eb;
  text-decoration: none;
}

.link-status a:hover {
  text-decoration: underline;
}
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  background: #ffffff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.category-card h4 {
  margin-bottom: 0.5rem;
  color: #111827;
}

.category-card p {
  color: #6b7280;
  font-size: 0.9rem;
}

.category-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
