:root {
  --primary: #2d5a4a;
  --primary-light: #3d7a64;
  --secondary: #a8d5e5;
  --accent: #ff6b35;
  --bg: #f4f7f6;
  --surface: #ffffff;
  --text: #1a1a2e;
  --text-muted: #5c5c7a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(45, 90, 74, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

.site-header {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3d32 100%);
  color: #fff;
  padding: 1.25rem 1.5rem;
}

.site-header-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.brand h1 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.brand span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.85;
  font-weight: 400;
}

nav a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  margin-left: 1.25rem;
  font-size: 0.95rem;
}

nav a:hover { text-decoration: underline; }

main {
  max-width: 880px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.card h2 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1.35rem;
}

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

.hero h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.hero p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin: 0.25rem;
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary) !important;
  border: 2px solid var(--primary);
}

.faq dt {
  font-weight: 600;
  margin-top: 1.25rem;
  color: var(--primary);
}

.faq dt:first-child { margin-top: 0; }

.faq dd {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
}

.legal h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  color: var(--primary);
}

.legal p, .legal li { color: var(--text); }

.lang-switch {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.lang-switch a { margin-right: 1rem; }

.contact-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1rem;
}

.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  border-top: 1px solid #e0e6e4;
}

.site-footer a { margin: 0 0.5rem; }
