@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");

:root {
  color-scheme: light;
  --color-red: #8a1e04;
  --color-blue: #5c87a1;
  --color-blue-dark: #345468;
  --color-body: #f5f7f9;
  --color-paper: #ffffff;
  --color-ink: #1b1f24;
  --color-muted: #5e6770;
  --color-border: #d8dce0;
  --radius-card: 20px;
  --radius-pill: 999px;
  --container: 1280px;
  --space-page: 36px;
  --font-main: "Instrument Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--color-ink);
  background: var(--color-body);
  line-height: 1.35;
}

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

img {
  display: block;
  max-width: 100%;
}

.site {
  min-height: 100vh;
  background: var(--color-paper);
}

.shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-page);
}

.super-header {
  background: var(--color-red);
  border-bottom: 4px solid #fff;
  color: #fff;
}

.super-header__inner {
  min-height: 48px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  font-size: 16px;
}

.super-header__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.super-header__action {
  color: inherit;
}

.super-header__action:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.super-header__icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.super-header__icon.phone {
  background-image: url("/assets/icons/icon-phone.png");
}

.super-header__icon.translate {
  background-image: url("/assets/icons/icon-translate.png");
}

.super-header__icon.pay {
  background-image: url("/assets/icons/icon-pay.png");
}

.super-header__icon.calendar {
  background-image: url("/assets/icons/icon-appointment.png");
}

.super-header__caret {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
}

.main-header {
  background: var(--color-blue);
  border-bottom: 4px solid var(--color-red);
  color: #fff;
}

.main-header__inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 96px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 16px;
}

.main-nav a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s ease;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: #fff;
}

.body {
  background: var(--color-paper);
  border-bottom: 4px solid var(--color-red);
  min-height: 420px;
}

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

.page-title {
  margin: 0 0 12px;
  font-size: 48px;
  line-height: 1.1;
  color: var(--color-red);
  font-weight: 700;
}

.page-intro {
  margin: 0;
  font-size: 20px;
  color: var(--color-ink);
}

.section-title {
  margin: 0 0 10px;
  font-size: 48px;
  color: var(--color-red);
  line-height: 1.1;
}

.section-subtitle {
  margin: 0 0 16px;
  font-size: 32px;
  color: var(--color-blue);
  line-height: 1.2;
}

.card {
  border-radius: var(--radius-card);
  border: 4px solid var(--color-red);
  background: #fff;
}

.card.alt {
  border-color: var(--color-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 10px;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-red);
  color: #fff;
  padding: 0 28px;
}

.muted {
  color: var(--color-muted);
}

.main-footer {
  background: var(--color-blue);
  border-top: 4px solid var(--color-red);
  color: #fff;
}

.main-footer__inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
}

.footer-link {
  font-size: 16px;
}

.footer-badge {
  width: 100px;
  height: 95px;
  border: 4px solid var(--color-red);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}

.footer-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
