:root {
  --green: #1c6539;
  --green-dark: #154c2c;
  --text: #27332c;
  --muted: #667069;
  --line: #dce4dc;
  --background: #eef2ec;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--background);
  font-family: Arial, "Noto Sans Hebrew", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(100% - 32px, 800px);
  margin: 34px auto 26px;
}

.card {
  position: relative;
  padding: 52px 62px 40px;
  border: 1px solid rgba(28, 101, 57, 0.08);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 18px 50px rgba(35, 61, 43, 0.09);
  text-align: center;
}

.language-switch {
  position: absolute;
  top: 18px;
  left: 20px;
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f9f6;
  direction: ltr;
}

.language-switch a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  color: var(--green-dark);
}

.language-switch a.active {
  color: #fff;
  background: var(--green);
}

.language-switch a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(28, 101, 57, 0.22);
  outline-offset: 3px;
}

.logo {
  width: 176px;
  height: 176px;
  margin: -12px auto -14px;
  object-fit: contain;
}

.kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--green-dark);
}

h1 {
  max-width: 620px;
  margin: 0 auto 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 5vw, 2.55rem);
  font-weight: 500;
  line-height: 1.2;
}

.intro {
  max-width: 540px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.services {
  padding: 26px 0 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: start;
}

h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding: 17px 20px 17px 0;
  border-bottom: 1px solid #edf1ec;
}

[dir="ltr"] li {
  padding: 17px 0 17px 20px;
}

li:last-child {
  border-bottom: 0;
}

li::before {
  content: "•";
  position: absolute;
  top: 15px;
  inset-inline-start: 0;
  color: var(--green);
}

li strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
}

li span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.65;
}

.note {
  margin: 21px 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.actions {
  display: grid;
  gap: 12px;
  width: min(100%, 380px);
  margin: 0 auto;
}

.button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease;
}

.primary {
  color: #fff;
  background: var(--green);
}

.primary:hover,
.primary:focus-visible {
  background: var(--green-dark);
}

.secondary {
  color: var(--green);
  background: transparent;
}

.secondary:hover,
.secondary:focus-visible {
  color: #fff;
  background: var(--green);
}

.address {
  margin: 20px 0 4px;
  color: var(--text);
  font-size: 0.92rem;
}

.medical {
  max-width: 620px;
  margin: 0 auto;
  color: #7a827c;
  font-size: 0.79rem;
}

footer {
  padding: 0 16px 32px;
  color: #7a837d;
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 20px, 800px);
    margin-top: 10px;
  }

  .card {
    padding: 58px 20px 26px;
    border-radius: 16px;
  }

  .language-switch {
    top: 14px;
    left: 14px;
  }

  .logo {
    width: 148px;
    height: 148px;
  }

  .services {
    padding-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
