:root {
  --bg-color: #f9f5e8;
  --surface-color: #ffffff;
  --primary-color: #1a1a1a;
  --secondary-color: #c79d46;
  --text-color: #1a1a1a;
  --muted-text-color: #6b6b6b;
  --border-color: #e0d5b8;
  --heading-font: Georgia, serif;
  --body-font: Arial, sans-serif;
  --max-width: 1200px;
  --section-padding: 80px 24px;
  --border-radius: 16px;
  --spacing-unit: 24px;
}

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

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: var(--spacing-unit);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

.navbar {
  background-color: var(--surface-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.nav-menu ul {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary-color);
}

.hero {
  text-align: center;
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.subheadline {
  font-size: 1.2rem;
  color: var(--muted-text-color);
  margin-bottom: 40px;
}

.points {
  list-style-type: none;
  margin-bottom: 40px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.points li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: var(--border-radius);
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #b88c3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer {
  text-align: center;
  padding: 30px;
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
}

.site-header {
  background-color: var(--surface-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navigation {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu ul {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary-color);
}

.main-content {
  padding: var(--section-padding);
}

.hero-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.subheadline {
  font-size: 1.2rem;
  color: var(--muted-text-color);
  margin-bottom: 40px;
}

.body-points {
  list-style-type: none;
  margin-bottom: 40px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.body-points li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.site-footer {
  text-align: center;
  padding: 30px;
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
}

.content {
  padding: var(--section-padding);
}

.features-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--spacing-unit);
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-card {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: calc(33% - var(--spacing-unit));
  text-align: center;
}

.feature-card h3 {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .nav-container,
  .navigation {
    flex-direction: column;
    padding: 15px;
  }

  .nav-menu ul {
    margin-top: 15px;
  }

  .nav-menu li {
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .features-section {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 100%;
    max-width: 500px;
  }
}
