:root {
  --teal: #1c9793;
  --navy: #0f5172;
  --text: #232a31;
  --muted: #5c6672;
  --bg: #f5f8f8;
  --panel: #ffffff;
  --border: #dde5e5;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img { height: 42px; width: auto; }

.brand-text {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
}

.brand-text small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.78rem;
}

nav.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: var(--text);
  font-size: 0.92rem;
}

nav.main-nav a:hover { color: var(--teal); }

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: brightness(0.45);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content .badge {
  background: var(--teal);
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.hero-content h1 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  max-width: 700px;
}

.hero-content .sub {
  font-size: 1.05rem;
  color: #e4f3f2;
}

main { padding: 36px 0 50px; }

section.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 28px;
  margin-bottom: 24px;
  scroll-margin-top: 74px;
}

section.card h2 {
  margin-top: 0;
  color: var(--navy);
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.fact {
  background: #f0f7f7;
  border-radius: 8px;
  padding: 14px 16px;
}

.fact h3 {
  margin: 0 0 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--teal);
}

.fact p { margin: 0; font-size: 0.95rem; }

.news-item {
  border-left: 3px solid var(--teal);
  padding-left: 16px;
}

.news-item .date {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.price-card h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: var(--navy);
}

.price-card .cat {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.price-card .amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 12px;
}

.contact-grid .qr {
  text-align: center;
}

.contact-grid .qr img {
  width: 120px;
  height: 120px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-grid .qr p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
}

.archive-note {
  background: #eef5f5;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

footer {
  background: var(--navy);
  color: #cfe4e4;
  padding: 24px 0;
  margin-top: 10px;
}

footer .foot-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

footer img { height: 30px; width: auto; }
footer .foot-text { font-size: 0.88rem; }

@media (max-width: 640px) {
  .facts { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 1.3rem; }
}
