:root {
  --brand: #1d6fdc;
  --brand-dark: #0f4ca3;
  --brand-soft: #e8f1ff;
  --accent: #ff7a3d;
  --text: #1c1c1c;
  --muted: #5a5a5a;
  --bg: #f5f7fb;
  --card: #ffffff;
  --border: #e2e8f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #f5f7fb 40%, #f6f8fc 100%);
  line-height: 1.7;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
}

.brand {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.l-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  border-radius: 6px;
  background: #d7263d;
  color: #fff;
  font-weight: 800;
  font-family: "Helvetica Neue", Arial, sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: #eef3ff;
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  color: #fff;
}

.lang-switcher {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
}

.lang-switcher a {
  color: #eef3ff;
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.15s ease;
}

.lang-switcher a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.lang-switcher a.active {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

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

.btn.primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 12px 30px rgba(12, 45, 110, 0.12);
}

.btn.ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn.ghost:hover {
  background: var(--brand);
  color: #fff;
}

.page-content {
  padding: 32px 0 60px;
}

.page-title {
  margin: 0 0 10px;
}

.section-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 12px 0;
  box-shadow: 0 12px 30px rgba(12, 45, 110, 0.08);
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background: var(--brand-soft);
  color: var(--brand);
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.hero {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.highlight-box {
  background: linear-gradient(135deg, #0f172a 0%, #162647 100%);
  color: #fff;
  padding: 20px;
  border-radius: 14px;
}

.quick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-list li {
  margin-bottom: 8px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 10px;
  border: 1px solid var(--border);
  text-align: left;
}

.callout {
  border-left: 4px solid var(--brand);
  padding: 12px 14px;
  background: #eef3ff;
  border-radius: 8px;
}

.site-footer {
  background: #0f172a;
  color: #dce3f0;
  padding: 28px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.footer-grid a {
  color: #dce3f0;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.map-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  min-height: 360px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.photo-grid figure {
  margin: 0;
}

.photo-grid img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.photo-grid figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  border-radius: 4px;
}

@media (max-width: 720px) {
  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
