:root {
  --primary-blue: #0056b3;
  --secondary-blue: #e6f0fa;
  --accent-blue: #007bff;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --bg-light: #f8fbff;
  --bg-white: #ffffff;
  --border-color: #eaeaea;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

/* Layout Classes */
.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--bg-light);
}

.text-center {
  text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h2.section-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.text-primary {
  color: var(--primary-blue);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-blue);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: white;
}

.btn-light {
  background-color: white;
  color: var(--primary-blue);
}

.btn-light:hover {
  background-color: #f0f0f0;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-blue);
  color: white;
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact {
  display: flex;
  gap: 20px;
}

.top-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.top-contact a:hover {
  opacity: 0.8;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Header & Nav */
.header {
  background: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  height: 44px;
  width: 44px;
  border-radius: 50%; /* clips the source image's square background */
  object-fit: cover;
  flex-shrink: 0;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f172a;
}

.logo-tagline {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #0252cc;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-blue);
}

/* Hero Section */
/* Hero Section */
.hero {
  background-color: #f4f7fb;
  padding: 40px 0 90px;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Left Hero Card */
.hero-left-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid #eef2f7;
}

.hero-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.hero-tag-blue {
  background-color: #e9f2ff;
  color: #0252cc;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-tag-gray {
  background-color: #f0f3f7;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

.hero-package-badge {
  display: inline-block;
  background-color: #0252cc;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.hero-left-card h1 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 12px;
}

.hero-left-card h1 .highlight-red {
  color: #c8102e;
  font-weight: 800;
}

.hero-left-card .hero-desc {
  font-size: 0.92rem;
  color: #64748b;
  margin-bottom: 22px;
  line-height: 1.5;
}

/* Featured Image Box */
.hero-image-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 320px;
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 18px;
  color: #ffffff;
  max-width: 90%;
}

.hero-image-overlay-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-image-overlay-title i {
  color: #ef4444;
}

.hero-image-overlay-subtext {
  font-size: 0.75rem;
  color: #cbd5e1;
  margin-top: 4px;
}

/* Left Bottom Bar */
.hero-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
}

.hero-bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slide-indicators {
  display: flex;
  align-items: center;
  gap: 5px;
}

.slide-pill-active {
  width: 20px;
  height: 6px;
  background-color: #0252cc;
  border-radius: 10px;
}

.slide-dot {
  width: 6px;
  height: 6px;
  background-color: #cbd5e1;
  border-radius: 50%;
}

.hero-bottom-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}

.hero-bottom-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-toll-free {
  font-size: 0.85rem;
  color: #0252cc;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-toll-free strong {
  font-weight: 700;
}

.btn-view-package {
  background-color: #0252cc;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-view-package:hover {
  background-color: #0041a3;
}

/* Right Form Card */
.hero-form-container {
  background: #eef4ff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
  border: 1px solid #e1ebfa;
}

.form-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.form-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-header-title i {
  color: #0252cc;
  font-size: 1.25rem;
}

.form-header-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.form-badge-white {
  background: #ffffff;
  color: #0252cc;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-field-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
}

.form-input-pill {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: #1e293b;
  font-family: inherit;
  transition: var(--transition);
}

.form-input-pill:focus {
  outline: none;
  border-color: #0252cc;
  box-shadow: 0 0 0 3px rgba(2, 82, 204, 0.1);
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit-red {
  background-color: #c8102e;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}

.btn-submit-red:hover {
  background-color: #a80b24;
}

/* Doctor Info Box (White Box inside Form Card) */
.doctor-info-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 16px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #ffffff;
}

.doctor-box-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

/* Each half of the card: one lab / one person */
.doctor-entry {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-left: 10px;
  border-left: 3px solid #0252cc;
}

.doctor-divider {
  height: 1px;
  background: #e9f2ff;
  margin: 0 -16px;
}

.doctor-details-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.doctor-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.doctor-qual {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0252cc;
  background: #e9f2ff;
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
}

.doctor-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #0252cc;
}

.doctor-exp {
  font-size: 0.73rem;
  color: #64748b;
  line-height: 1.45;
}

.doctor-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
}

.doctor-contact i {
  font-size: 0.65rem;
  color: #0252cc;
}

.doctor-contact a {
  color: #0f172a;
  text-decoration: none;
}

.doctor-contact a:hover {
  color: #0252cc;
  text-decoration: underline;
}

.doctor-dot {
  color: #cbd5e1;
}

.doctor-status {
  font-size: 0.72rem;
  font-weight: 600;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid #e9f2ff;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.status-dot-green {
  width: 6px;
  height: 6px;
  background-color: #16a34a;
  border-radius: 50%;
  display: inline-block;
}

/* Features Cards */
.features-row {
  margin-top: -60px; /* Pull up to overlap hero */
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: white;
  padding: 25px 20px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-blue);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.feature-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Popular Tests Grid */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.test-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.test-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.test-card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.test-badge {
  background-color: var(--secondary-blue);
  color: var(--primary-blue);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.test-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.test-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-grow: 1;
}

.test-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.test-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-blue);
}

/* Pricing Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.package-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
}

.package-card.highlight {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
  background-color: white;
  border-width: 2px;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-blue);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.package-includes {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.package-features {
  margin-bottom: 30px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.package-features li i {
  color: var(--primary-blue);
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.package-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: normal;
  text-decoration: line-through;
}

/* Why Choose Us Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.why-icon {
  background-color: var(--secondary-blue);
  color: var(--primary-blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Split Sections (Home Collection / About) */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.split-list {
  margin: 30px 0;
}

.split-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  background: white;
  padding: 15px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.split-list li i {
  color: var(--primary-blue);
  background: var(--secondary-blue);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Services Small Grid */
.services-small-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-item {
  background: white;
  padding: 20px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--border-color);
  font-weight: 600;
}

.service-item i {
  color: var(--primary-blue);
  background: var(--secondary-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats Banner */
.stats-banner {
  background-color: var(--primary-blue);
  color: white;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  background: white;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Bottom CTA */
.cta-section {
  background-color: var(--primary-blue);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Footer */
.footer {
  background-color: #f8f9fa;
  padding: 80px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-mark {
  height: 52px;
  width: 52px;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Mobile Navigation Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary-blue);
  cursor: pointer;
  padding: 6px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-left-card,
  .hero-form-container {
    max-width: 100%;
  }

  .features-grid, 
  .tests-grid, 
  .why-grid, 
  .services-small-grid, 
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item {
    border-right: none;
    padding: 10px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }

  .package-card.highlight {
    transform: none;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .top-bar {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-action {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-action .btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
    border-top: 1px solid #eaeaea;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-left-card h1 {
    font-size: 1.8rem;
  }

  .hero-left-card {
    padding: 20px;
  }

  .hero-form-container {
    padding: 20px;
  }

  .features-grid, 
  .tests-grid, 
  .why-grid, 
  .services-small-grid, 
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
  }

  .hero-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-bottom-right {
    width: 100%;
    justify-content: space-between;
  }

  .hero-image-box {
    height: 230px;
  }

  .hero-image-overlay {
    left: 10px;
    bottom: 10px;
    padding: 8px 12px;
  }

  .hero-image-overlay-title {
    font-size: 0.8rem;
  }

  .hero-image-overlay-subtext {
    font-size: 0.7rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .doctor-entry {
    gap: 10px;
  }
}
