@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Quicksand:wght@600;700&display=swap');

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

:root {
  --primary: #7C9885;
  --primary-dark: #6a846f;
  --secondary: #D4A5A5;
  --text: #333;
  --text-light: #666;
  --bg: #fefefe;
  --bg-alt: #f8faf8;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  max-width: 1000px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.logo img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

nav a {
  margin-left: 1.5rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--primary-dark);
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: var(--bg-alt);
}

.logo-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.logo-centered img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
}

.logo-centered span {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.hero h1 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  border-color: var(--primary);
}

/* Features */
.features {
  padding: 4rem 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature {
  text-align: center;
  padding: 1.5rem;
}

.feature i {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Legal pages */
.legal {
  padding: 3rem 0;
}

.legal h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.legal .updated {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.legal h2 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.legal p, .legal ul {
  margin-bottom: 1rem;
}

.legal ul {
  padding-left: 1.5rem;
}

.legal li {
  margin-bottom: 0.5rem;
}

.legal a {
  color: var(--primary);
}

/* Footer */
footer {
  margin-top: auto;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #eee;
  color: var(--text-light);
  font-size: 0.9rem;
}

footer a {
  color: var(--text-light);
  margin: 0 0.75rem;
}

footer a:hover {
  color: var(--primary-dark);
}

footer p {
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .logo-centered span {
    font-size: 1.75rem;
  }

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

  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav a {
    margin: 0 0.75rem;
  }
}
