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

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #FAFAFA;
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
}

.page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  background: white;
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #284420;
  margin: 0;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #284420;
}

.nav-link.active {
  color: #284420;
  font-weight: 600;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 60px 0;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #284420;
  margin: 0 0 24px 0;
}

.last-updated {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
  font-style: italic;
}

/* Description Section (Home Page) */
.description-section {
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.description-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.description-text:last-child {
  margin-bottom: 0;
}

.links-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.content-link {
  font-size: 15px;
  color: #284420;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.content-link:hover {
  color: #1a2e15;
  text-decoration: underline;
}

.link-separator {
  color: #999;
  font-size: 15px;
}

/* Legal Content (Terms & Privacy Pages) */
.legal-content {
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.legal-content > p:first-child {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 32px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #284420;
  margin: 0 0 12px 0;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 12px 0 12px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section li:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .nav {
    gap: 16px;
  }

  .page-title {
    font-size: 28px;
  }

  .description-section,
  .legal-content {
    padding: 24px;
  }

  .main-content {
    padding: 40px 0;
  }
}

