:root {
  --blue: #012770;
  --blue-dark: #012770;
  --blue-soft: #f4f7ff;
  --red: #B0142A;
  --red-soft: #fff2f4;
  --text-muted: #012770;
  --border: #cad3ea;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.top-line {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--blue);
  z-index: 10;
}

.decor {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .22;
  pointer-events: none;
}

.decor-left {
  left: -170px;
  top: 120px;
  background: #dbe7ff;
}

.decor-right {
  right: -170px;
  top: 48%;
  background: #ffd9df;
}

.page {
  position: relative;
  width: min(100% - 40px, 448px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 58px 0 34px;
  display: flex;
  flex-direction: column;
}

.hero {
  text-align: center;
}

.logo-ring {
  display: inline-flex;
  padding: 8px;
  border: 1px solid rgba(176, 20, 42, .35);
  border-radius: 50%;
}

.logo {
  width: 152px;
  height: 152px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--blue);
  box-shadow: 0 8px 30px rgba(1, 39, 112, .12);
  image-rendering: auto;
}

h1 {
  margin: 24px 0 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 8vw, 42px);
  line-height: 1.05;
  letter-spacing: -1.1px;
  color: var(--blue-dark);
}

.divider {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--red);
}

.divider span {
  width: 32px;
  height: 1px;
  background: rgba(176, 20, 42, .5);
}

.specialty {
  margin: 15px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(1, 39, 112, .78);
}

.links {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}

.card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 80px;
  padding: 15px 18px;
  border-radius: 17px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.95);
  color: var(--blue-dark);
  text-decoration: none;
  box-shadow: 0 5px 18px rgba(1, 39, 112, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 20, 42, .65);
  box-shadow: 0 12px 26px rgba(1, 39, 112, .13);
}

.card:focus-visible {
  outline: 3px solid rgba(176, 20, 42, .28);
  outline-offset: 3px;
}

.card-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #123b94, #173b87 55%, #102e76);
  box-shadow: 0 14px 30px rgba(1, 39, 112, .23);
}

.icon-box {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--red-soft);
  color: var(--red);
}

.primary-icon {
  background: rgba(255,255,255,.14);
  color: #fff;
}

.icon-box svg,
.hours-title svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.card-text strong {
  font-size: 16px;
  line-height: 1.25;
}

.card-primary .card-text strong {
  font-size: 18px;
}

.card-text small {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
  opacity: .82;
}

.card-primary .card-text small {
  color: #ffffff;
  opacity: .92;
}

footer {
  margin-top: auto;
  padding-top: 46px;
  text-align: center;
}

.hours {
  padding: 20px 18px;
  border: 1px solid #dbe3f5;
  border-radius: 18px;
  background: var(--blue-soft);
}

.hours-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
}

.hours-title svg {
  width: 17px;
  height: 17px;
  color: var(--red);
}

.hours-title span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.hours p {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.copyright {
  margin: 24px 0 0;
  font-size: 11px;
  color: var(--blue);
  opacity: .72;
}

@media (max-width: 480px) {
  .page {
    width: min(100% - 28px, 448px);
    padding-top: 40px;
  }

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

  .specialty {
    font-size: 13px;
    letter-spacing: .15em;
  }
}
