:root {
  --bg: #f5efe6;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-secondary: #4a3a2f;
  --accent: #e87722;
  --border: rgba(0, 0, 0, 0.08);
  --header-bg: #3a3330;
  --header-text: #f5efe6;
  --radius-lg: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; }

/* HEADER */
header {
  background: var(--header-bg);
  padding: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--header-text);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

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

.header-right a {
  color: var(--header-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.header-right a:hover { color: var(--accent); }

.lang-select {
  background: transparent;
  border: 1px solid rgba(245, 239, 230, 0.35);
  color: var(--header-text);
  padding: 6px 14px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s;
}

.lang-select:hover { border-color: rgba(245, 239, 230, 0.6); }

/* PAGE TITLE BAR */
.page-title-bar {
  background: linear-gradient(175deg, #3a3330 0%, #5a3e28 100%);
  padding: 48px 20px;
  text-align: center;
}

.page-title-bar h1 {
  font-size: 32px;
  color: #fff;
}

/* ARTICLE */
.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.article h2 {
  font-size: 22px;
  margin-bottom: 14px;
  margin-top: 40px;
  color: var(--text);
}

.article h3 {
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 32px;
  color: var(--text);
}

.article p, .article li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.article ul, .article ol {
  padding-left: 24px;
  margin-bottom: 14px;
}

.article a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.article a:hover { text-decoration: underline; }

.article strong { color: var(--text); }

/* CONTACT CARD */
.contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-card h2 {
  font-size: 22px;
  margin-bottom: 16px;
  margin-top: 0;
}

.contact-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

/* FAQ */
.faq-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.faq-item h3 {
  font-size: 16px;
  margin: 0 0 10px;
  color: var(--text);
}

.faq-item p, .faq-item ol {
  margin-bottom: 0;
}

/* FOOTER */
footer {
  background: var(--header-bg);
  color: rgba(255, 255, 255, 0.9);
  padding: 40px 20px 24px;
  text-align: center;
}

footer .tagline {
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(245, 239, 230, 0.7);
}

footer .cookies {
  font-size: 13px;
  color: rgba(245, 239, 230, 0.5);
  margin-bottom: 6px;
}

footer .cookies a {
  color: rgba(245, 239, 230, 0.7);
  text-decoration: underline;
}

footer .share {
  font-size: 13px;
  color: rgba(245, 239, 230, 0.5);
  margin-bottom: 28px;
}

footer .links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
  font-size: 13px;
}

footer .links a {
  color: var(--header-text);
  text-decoration: underline;
  transition: color 0.15s;
}

footer .links a:hover { color: var(--accent); }

footer .copyright {
  font-size: 13px;
  color: rgba(245, 239, 230, 0.5);
}

@media (max-width: 900px) {
  header { padding: 0 20px; }
}

@media (max-width: 600px) {
  .page-title-bar h1 { font-size: 24px; }
  .page-title-bar { padding: 36px 16px; }
  footer .links { flex-wrap: wrap; gap: 16px; }
  .contact-card { padding: 28px 20px; }
}
