:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #4b5563;
  --primary: #0f4c81;
  --primary-soft: #e7f0fa;
  --border: #d8e1ec;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f9fc 0%, #edf3f9 100%);
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(247, 250, 253, 0.9);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 66px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #0a2f52;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-left: 6px;
  border-left: 1px solid var(--border);
}

.lang-link-active {
  font-weight: 700;
  color: #0a2f52;
}

.hero {
  padding: 80px 0 56px;
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 10px 35px rgba(11, 37, 67, 0.08);
}

.eyebrow {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.hero p {
  font-size: 1.08rem;
  max-width: 760px;
  color: var(--muted);
  margin: 0;
}

.section {
  padding: 18px 0 14px;
}

.section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 18px;
}

.lead {
  color: var(--muted);
  margin-top: -4px;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature {
  background: #f8fbff;
  border: 1px solid #d9e6f4;
  border-radius: 12px;
  padding: 14px;
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 19px;
}

.list li {
  margin-bottom: 8px;
  color: var(--muted);
}

.contact p,
.legal-note {
  margin: 0 0 8px;
  color: var(--muted);
}

.site-footer {
  margin-top: 16px;
  border-top: 1px solid var(--border);
  background: #f0f5fb;
}

.site-footer .container {
  padding: 24px 0 30px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.small {
  font-size: 0.9rem;
  color: #526072;
}

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

.page-main {
  flex: 1;
  padding: 40px 0 26px;
}

.policy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.policy-card h1 {
  margin-bottom: 8px;
}

.policy-card h2 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.policy-card p {
  color: var(--muted);
  margin: 0 0 12px;
}

@media (max-width: 760px) {
  .grid.two {
    grid-template-columns: 1fr;
  }

  .site-header .container {
    min-height: 72px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-panel,
  .section-card,
  .policy-card {
    padding: 20px;
  }
}
