*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans Georgian', sans-serif;
  background: #b8dfc8;
  color: #1a3028;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.6;
}

/* ── Header ── */
.sz-header {
  background: #2d7a52;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.sz-header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sz-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.sz-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.95);
}
.sz-logo-text { display: flex; flex-direction: column; }
.sz-logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.sz-logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sz-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.sz-back-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
}

/* ── Main ── */
main { flex: 1; padding: 48px 24px 64px; }

/* ── Page hero ── */
.page-hero {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.page-hero-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2ecc84, #1a9960);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(30,120,70,0.3);
}
.page-hero-icon svg { width: 26px; height: 26px; color: #fff; }
.page-hero h1 {
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  font-weight: 700;
  color: #163320;
  margin-bottom: 8px;
}
.page-hero p { font-size: 0.88rem; color: #3a6048; }
.page-hero a { color: #1a8c50; }

/* ── Category label ── */
.faq-category {
  max-width: 760px;
  margin: 32px auto 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a8c50;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-category::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(34,160,100,0.25);
}

/* ── FAQ list ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Accordion item ── */
.faq-item {
  background: #f4fbf7;
  border: 1px solid #a8d8bc;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s, background 0.25s;
}
.faq-item:hover {
  border-color: #22a064;
  background: #edf8f2;
  box-shadow: 0 4px 20px rgba(34,160,100,0.13);
  transform: translateY(-2px);
}
.faq-item.open {
  border-color: #22a064;
  background: #edf8f2;
  box-shadow: 0 4px 20px rgba(34,160,100,0.15);
  transform: translateY(-2px);
}

/* ── Question button ── */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  color: #163320;
  text-align: left;
  transition: color 0.2s;
}
.faq-item:hover .faq-q { color: #1a8c50; }
.faq-item.open  .faq-q { color: #1a8c50; }

.faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e0f4ea;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.35s, box-shadow 0.25s;
}
.faq-item:hover .faq-q-icon {
  background: #c8eeda;
  box-shadow: 0 2px 8px rgba(34,160,100,0.2);
}
.faq-item.open .faq-q-icon {
  background: #22a064;
  transform: rotate(180deg);
  box-shadow: 0 2px 10px rgba(34,160,100,0.35);
}
.faq-q-icon svg {
  width: 14px;
  height: 14px;
  stroke: #22a064;
  transition: stroke 0.25s;
}
.faq-item.open .faq-q-icon svg { stroke: #fff; }

/* ── Answer panel ── */
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a {
  padding: 0 22px 18px;
  padding-top: 14px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #2d5040;
  line-height: 1.75;
  border-top: 1px solid #d0eddc;
}
.faq-a a { color: #1a8c50; text-decoration: underline; text-underline-offset: 3px; }

/* ── Footer ── */
.sz-footer {
  border-top: 1px solid #a8d0b8;
  padding: 20px 24px;
  text-align: center;
}
.sz-footer-inner {
  font-size: 0.75rem;
  font-weight: 400;
  color: #5a8868;
}