body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #faf6f2; /* Beige background */
  color: #2b2b2b;
}

header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 16px 20px;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  font-weight: 800;
  color: #DE7356;
  font-size: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 500;
  margin-left: 12px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #DE7356;
}

main {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

textarea {
  width: 100%;
  min-height: 220px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 16px;
  font-family: system-ui, sans-serif;
  box-sizing: border-box;
  resize: vertical;
}

textarea::placeholder {
  font-family: system-ui, sans-serif;
  font-weight: normal;
  color: #999;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.stat {
  background: #faf6f2;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.stat span {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #DE7356;
}

footer {
  text-align: center;
  padding: 40px 20px;
  color: #777;
}
