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

/* Base */
body {
  font-family: Georgia, "Times New Roman", serif;
  background: #f7f4ef;
  color: #2f3a2f;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 60px;
}

.cover {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #6a7b4f;
}

.hero h2 {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #4b5a3c;
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.primary {
  background: #6a7b4f;
  color: #fff;
}

.primary:hover {
  background: #58683f;
}

.secondary {
  border: 1px solid #6a7b4f;
  color: #6a7b4f;
}

.secondary:hover {
  background: #6a7b4f;
  color: #fff;
}

/* Content */
.content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #6a7b4f;
}

.content p {
  margin-bottom: 20px;
}

.content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.content li {
  margin-bottom: 10px;
}

/* Note */
.note {
  font-size: 0.85rem;
  color: #6b6b6b;
  font-style: italic;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 60px;
  font-size: 0.8rem;
  color: #777;
}
