* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #11243a;
  background: #f4f7fb;
  line-height: 1.7;
}

h1,
h2 {
  letter-spacing: -0.4px;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #e6edf6;
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.site-nav a {
  margin-left: 18px;
  font-size: 0.95rem;
  color: #3a526c;
  padding: 6px 10px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover {
  background: #eef4ff;
  color: #0b4aa2;
}

.site-nav a.active {
  font-weight: 600;
  color: #0b4aa2;
}

.site-nav a.active,
.site-nav a.active:hover {
  background: #e7f0ff;
}

.hero {
  background: radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(231, 241, 255, 0.8) 50%,
      rgba(244, 247, 251, 1) 100%
    ),
    linear-gradient(120deg, #e7f0fb 0%, #ffffff 100%);
  padding: 90px 0 80px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero-layout {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.hero-content {
  max-width: 620px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(10, 28, 56, 0.18);
}

.hero-panel h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.panel-note p {
  margin: 0;
  color: #3a4f69;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.stat {
  background: #f4f7fb;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #e0e9f5;
}

.stat strong {
  display: block;
  font-size: 1.1rem;
  color: #0b4aa2;
}

.stat span {
  font-size: 0.9rem;
  color: #52667d;
}

.hero-home {
  background-image: url("national-cancer-institute-XknuBmnjbKg-unsplash.jpg");
  background-size: cover;
  background-position: center;
  min-height: 520px;
}

.hero-home::before,
.hero-services::before,
.hero-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(8, 20, 38, 0.78) 0%,
      rgba(8, 20, 38, 0.55) 45%,
      rgba(244, 247, 251, 0.92) 100%
    );
  z-index: 0;
}

.hero-home h1,
.hero-home .lead,
.hero-home .eyebrow,
.hero-services h1,
.hero-services .lead,
.hero-services .eyebrow,
.hero-contact h1,
.hero-contact .lead,
.hero-contact .eyebrow {
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(11, 31, 60, 0.35);
}

.hero-home .lead {
  color: rgba(255, 255, 255, 0.88);
}

.hero-home .button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.hero-home .button.ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-services {
  background-image: url("https://images.pexels.com/photos/3015224/pexels-photo-3015224.jpeg?cs=srgb&dl=pexels-absolute-charm-1561240-3015224.jpg&fm=jpg");
  background-size: cover;
  background-position: center;
}

.hero-contact {
  background-image: url("lucas-vasques-9vnACvX2748-unsplash.jpg");
  background-size: cover;
  background-position: center;
}

.hero.small {
  padding: 70px 0 60px;
  text-align: center;
}

.hero.small .lead {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #56779a;
  margin-bottom: 12px;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 12px;
  line-height: 1.1;
}

.lead {
  max-width: 560px;
  margin: 0 0 22px;
  font-size: 1.1rem;
  color: #3b4c64;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.hero-image {
  width: min(760px, 100%);
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(11, 31, 60, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
  letter-spacing: 0.2px;
}

.button.primary {
  background: linear-gradient(120deg, #0b4aa2 0%, #1a6dd8 100%);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  border-color: #0b4aa2;
  color: #0b4aa2;
}

.button.ghost {
  background: transparent;
  border-color: #ccd8ea;
  color: #0b4aa2;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 74, 162, 0.18);
}

.section {
  padding: 70px 0;
  background: #ffffff;
}

.section.alt {
  background: #f0f4fa;
}

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

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.service-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.service-list li,
.check-list li {
  background: #ffffff;
  border: 1px solid #e2e9f3;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(16, 44, 84, 0.06);
}

.check-list li::before {
  content: "✔";
  margin-right: 10px;
  color: #0b4aa2;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e9f3;
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 24px;
  box-shadow: 0 12px 26px rgba(16, 44, 84, 0.08);
}

.service-card h2 {
  font-size: 1.3rem;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-row span {
  padding: 6px 12px;
  background: #eef4ff;
  color: #0b4aa2;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.callout-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e2e9f3;
  box-shadow: 0 12px 30px rgba(16, 44, 84, 0.08);
}

.callout-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #3a4f69;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.feature-grid article {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e2e9f3;
  box-shadow: 0 10px 24px rgba(16, 44, 84, 0.08);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-tile {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e2e9f3;
  box-shadow: 0 10px 24px rgba(16, 44, 84, 0.08);
}

.service-tile h3 {
  margin-top: 0;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.reason-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e2e9f3;
  box-shadow: 0 10px 24px rgba(16, 44, 84, 0.08);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0b4aa2;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.image-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #e2e9f3;
  box-shadow: 0 10px 22px rgba(16, 44, 84, 0.1);
}

.contact-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-preview p {
  color: #2f435c;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2c3e55;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d7e0ed;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0b4aa2;
  box-shadow: 0 0 0 3px rgba(11, 74, 162, 0.12);
}

.contact-image {
  width: 100%;
  max-width: 420px;
  margin: 10px 0 18px;
  border-radius: 16px;
  border: 1px solid #e2e9f3;
  box-shadow: 0 14px 30px rgba(11, 31, 60, 0.12);
}

.map-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(16, 44, 84, 0.12);
}

.hours {
  margin-top: 20px;
  padding: 16px;
  background: #f6f8fb;
  border-radius: 12px;
}

.site-footer {
  background: #0c1f33;
  color: #ffffff;
  padding: 26px 0;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .site-header .container {
    flex-direction: column;
    gap: 12px;
  }

  .site-nav a {
    margin-left: 10px;
    margin-right: 10px;
  }
}
