/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

header {
  background-color: #e2e8f0;
  padding: 40px 0;
  text-align: center;
}

header .logo {
  max-width: 160px;
  margin-bottom: 20px;
}

header h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1e293b;
}

header p {
  font-size: 18px;
  color: #334155;
}

main {
  padding: 40px 0;
}

section {
  margin-bottom: 40px;
  padding: 0 20px;
}

section h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1e293b;
}

section p {
  margin-bottom: 15px;
  color: #334155;
  font-size: 16px;
}

section ul {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style-type: disc;
}

section ul li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #334155;
}

a {
  color: #1e40af;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  background-color: #e2e8f0;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}
