:root {
  /* Primary Global Color Palette - Harmonious & Accessible */
  --primary: #1a73e8;
  --primary-dark: #0d47a1;
  --primary-light: #5b9ef5;
  
  /* Secondary - Vibrant & Complementary */
  --secondary: #00acc1;
  --secondary-dark: #00838f;
  --secondary-light: #4dd0e1;
  
  /* Accent - Healthcare-Focused Green */
  --accent: #00897b;
  --accent-light: #4db8ac;
  
  /* Tertiary - Warm Accent */
  --tertiary: #f57c00;
  --tertiary-light: #ffb74d;
  
  /* Neutral Scale */
  --navy: #0d1b2a;
  --white: #ffffff;
  --light: #f5f7fa;
  --light-bg: #eceff1;
  --gray: #b0bec5;
  --gray-dark: #78909c;
  --text: #0a1118;
  --text-muted: #424242;
  
  /* System Colors */
  --success: #00897b;
  --warning: #f57f17;
  --error: #c62828;
  --info: #01579b;
  
  /* Radius & Effects */
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "Manrope", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #eceff1 50%, #e0f2f1 100%);
  color: var(--text);
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 172, 193, 0.12), transparent 40%),
    radial-gradient(circle at 90% 15%, rgba(0, 137, 123, 0.1), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(245, 127, 0, 0.08), transparent 40%);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 800;
  color: var(--white);
}

.brand strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  animation: brand-emphasis 2.4s ease-in-out infinite;
}

.brand small {
  opacity: 0.86;
  font-size: 0.74rem;
}

@keyframes brand-emphasis {
  0%,
  100% {
    transform: translateY(0);
    text-shadow: 0 0 0 rgba(91, 158, 245, 0);
  }
  50% {
    transform: translateY(-1px);
    text-shadow: 0 0 12px rgba(91, 158, 245, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand strong {
    animation: none;
  }
}

.menu-toggle {
  display: none;
  background: var(--tertiary);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

nav a {
  color: #e8f5ff;
  text-decoration: none;
  font-size: 0.86rem;
  opacity: 0.9;
  transition: all 0.2s ease;
}

nav a:hover {
  color: var(--secondary-light);
  opacity: 1;
}

nav a.active {
  color: var(--secondary-light);
  font-weight: 800;
}

.breadcrumbs {
  margin-top: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-dark);
  font-size: 0.9rem;
}

.breadcrumbs a {
  text-decoration: none;
  color: var(--gray-dark);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs a[aria-current="page"] {
  color: var(--navy);
  font-weight: 700;
}

.hero {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(13, 27, 42, 0.88), rgba(26, 115, 232, 0.5));
}

.hero-content {
  position: relative;
  color: var(--white);
  padding: 130px 0 80px;
}

.eyebrow {
  display: inline-block;
  background: rgba(245, 127, 0, 0.15);
  border: 1px solid rgba(245, 127, 0, 0.6);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  color: #ffb74d;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.05;
  max-width: 14ch;
  margin: 16px 0;
}

.hero p {
  max-width: 74ch;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  border: 0;
  text-decoration: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(8, 17, 34, 0.2);
}

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

.btn-green {
  background: var(--accent);
  color: var(--white);
}

.btn-gold {
  background: var(--tertiary);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--gray-dark);
  transition: all 0.2s ease;
}

.btn-outline-dark:hover {
  color: var(--primary);
  border-color: var(--primary);
}

section {
  padding: 46px 0;
}

.section-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 36px);
  margin-bottom: 22px;
}

.section-card h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-family: "Fraunces", serif;
  color: var(--primary-dark);
}

.stats {
  margin-top: -38px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.stats article {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray);
  padding: 14px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stats h3 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--primary);
}

.stats p {
  margin: 6px 0 0;
  font-size: 0.84rem;
}

.photo-showcase {
  padding-top: 26px;
  padding-bottom: 18px;
}

.photo-showcase-header {
  margin-bottom: 18px;
}

.photo-showcase-header h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-family: "Fraunces", serif;
  color: var(--navy);
}

.photo-showcase-header p:last-child {
  max-width: 72ch;
  line-height: 1.7;
}

.eyebrow-light {
  color: var(--navy);
}

.photo-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 31, 58, 0.08);
  box-shadow: var(--shadow);
}

.photo-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.photo-card figcaption {
  padding: 12px 14px 14px;
  font-weight: 700;
  color: var(--navy);
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid article,
blockquote {
  padding: 14px;
  border: 1px solid var(--gray);
  border-radius: 14px;
  background: #fbfdff;
}

.pill-list,
.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill-list li,
.check-list li {
  background: #e9f2ff;
  border: 1px solid #d5e7ff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
}

.check-list li {
  background: #e8f8f4;
  border-color: #c5ece2;
}

.timeline {
  padding-left: 18px;
  line-height: 1.75;
}

.world-map {
  margin-top: 14px;
  min-height: 210px;
  border-radius: 14px;
  border: 1px solid var(--gray);
  background:
    linear-gradient(160deg, rgba(26, 115, 232, 0.12), rgba(0, 172, 193, 0.18)),
    url("https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg") center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.world-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  background: var(--tertiary);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 8px rgba(245, 127, 0, 0.15);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.18); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.filters.compact {
  margin-top: 10px;
}

.filters select,
.filters input,
.filters label,
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #c8d4e6;
  border-radius: 10px;
  font: inherit;
  background: var(--white);
}

.job-list {
  display: grid;
  gap: 10px;
}

.job-item {
  border-radius: 12px;
  border: 1px solid #d6e1ef;
  padding: 12px;
  background: #fcfeff;
}

.actions-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.hospital-map {
  min-height: 200px;
  border-radius: 12px;
  border: 1px solid #cad8ef;
  background:
    linear-gradient(120deg, rgba(15, 95, 189, 0.14), rgba(158, 232, 241, 0.2)),
    linear-gradient(45deg, #e9f2ff 25%, transparent 25%),
    linear-gradient(-45deg, #e9f2ff 25%, transparent 25%);
  background-size: cover, 24px 24px, 24px 24px;
  background-position: center, 0 0, 12px 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.hospital-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--emerald);
  border: 2px solid #fff;
}

.hospital-dot::after {
  content: attr(data-name);
  position: absolute;
  top: 16px;
  left: -8px;
  background: rgba(11, 31, 58, 0.92);
  color: #fff;
  padding: 3px 6px;
  border-radius: 7px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.progress-wrap {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.progress-item {
  display: grid;
  gap: 6px;
}

progress {
  width: 100%;
  height: 14px;
}

.small-note {
  color: #3d4f68;
  font-size: 0.9rem;
}

.pipeline-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pipeline-row .bar {
  grid-column: 1 / -1;
  background: #e8edf8;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.pipeline-row .bar i {
  display: block;
  height: 10px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.timeline.compact {
  margin: 0;
}

.blog-grid,
.faq-list {
  display: grid;
  gap: 10px;
}

.blog-card,
.faq-item {
  background: #f9fafb;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 12px;
}

.faq-item button {
  width: 100%;
  text-align: left;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

.faq-item p {
  margin-bottom: 0;
  display: none;
}

.faq-item.open p {
  display: block;
}

footer {
  background: var(--navy);
  color: #d8ecff;
  margin-top: 20px;
  padding: 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 18px;
}

footer a {
  color: #c8e0ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--secondary-light);
}
}

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

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(8, 23, 46, 0.16);
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.04);
}

.gallery-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.gallery-image-captioned figcaption {
  padding: 12px 14px 14px;
  font-weight: 700;
  color: var(--navy);
  background: #fbfdff;
}

.nurse-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.08) 0%, rgba(11, 31, 58, 0.62) 100%);
  pointer-events: none;
}

.nurse-hero figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.nurse-section-intro {
  max-width: 72ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.nurse-screening-panel {
  margin: 22px 0 26px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #d9e7f7;
  background: linear-gradient(180deg, #f8fbff, #eff7ff);
}

.nurse-screening-image {
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #d8e9ff;
  box-shadow: 0 10px 28px rgba(8, 23, 46, 0.08);
}

.nurse-screening-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.nurse-screening-image figcaption {
  padding: 12px 14px 14px;
  font-weight: 700;
  color: var(--navy);
  background: #fbfdff;
}

.nurse-screening-panel h3,
.nurse-showcase-header h3,
.nurse-journey h3 {
  margin-top: 0;
  color: var(--navy);
}

.nurse-check-list li {
  background: #ffffff;
  border-color: #d8e9ff;
}

.nurse-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 16px 0 24px;
}

.nurse-profile-card {
  border: 1px solid var(--gray);
  border-radius: 18px;
  overflow: hidden;
  background: #fbfdff;
  box-shadow: 0 10px 28px rgba(8, 23, 46, 0.1);
}

.nurse-profile-card .gallery-image {
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.nurse-profile-card .gallery-image:hover {
  transform: none;
}

.nurse-profile-copy {
  padding: 16px 18px 18px;
}

.nurse-profile-copy h4,
.journey-card h4 {
  margin: 0 0 8px;
  color: var(--navy);
}

.nurse-profile-copy p {
  margin: 0;
  color: #425671;
  line-height: 1.6;
}

.nurse-journey {
  margin-top: 10px;
}

.journey-card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.featured-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(8, 23, 46, 0.18);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.facility-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.04) 0%, rgba(11, 31, 58, 0.68) 100%);
  pointer-events: none;
}

.facility-image figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.featured-image-medium img {
  height: 320px;
}

.care-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 22px;
}

.care-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #fbfdff;
  border: 1px solid var(--gray);
  box-shadow: 0 8px 24px rgba(8, 23, 46, 0.12);
}

.care-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.care-strip figcaption {
  padding: 12px 14px 14px;
  font-weight: 700;
  color: var(--navy);
}

.image-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.image-row img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(8, 23, 46, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  nav {
    display: none;
    position: absolute;
    right: 4vw;
    top: 74px;
    background: rgba(11, 31, 58, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    width: min(480px, 92vw);
    padding: 12px;
    max-height: 68vh;
    overflow: auto;
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .photo-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-strip {
    grid-template-columns: 1fr;
  }

  .nurse-profile-grid {
    grid-template-columns: 1fr;
  }

  .photo-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .featured-image img {
    height: 300px;
  }

  .image-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .grid.two,
  .grid.three,
  .stats,
  .footer-grid,
  .image-gallery,
  .photo-showcase-grid {
    grid-template-columns: 1fr;
  }

  .photo-card-large {
    grid-column: span 1;
  }

  .featured-image img {
    height: 250px;
  }

  .featured-image-medium img {
    height: 240px;
  }

  .image-row {
    grid-template-columns: 1fr;
  }

  .gallery-image img {
    height: 200px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Non-Medical Caregiving Styles */
.service-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.service-list li {
  padding: 12px;
  background: #f0f8ff;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
}

.service-list strong {
  color: var(--navy);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.process-step {
  background: #f9fafb;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.1);
}

.step-number {
  display: inline-block;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.process-step h3 {
  color: var(--primary-dark);
  margin: 12px 0;
  font-size: 1.1rem;
}

.process-step p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.benefits-grid article {
  background: #f9fafb;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 18px;
}

.benefits-grid h3 {
  color: var(--accent);
  font-size: 1.05rem;
  margin-top: 0;
}

.benefits-grid p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.testimonial-grid blockquote {
  background: #f5faff;
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  padding: 16px;
  font-style: italic;
  color: #2a4a6a;
}
}

.testimonial-grid blockquote p {
  margin: 0 0 12px 0;
}

.testimonial-grid footer {
  background: none;
  color: #4a6a8a;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
}

.faq-content {
  margin-top: 16px;
}

details {
  border: 1px solid #dfe8f4;
  border-radius: 10px;
  padding: 0;
  margin-bottom: 10px;
  background: #fbfdff;
}

details summary {
  padding: 14px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details summary:hover {
  background: #f5f9ff;
}

details[open] summary {
  background: #f0f6ff;
}

details p {
  padding: 0 14px 14px 14px;
  margin: 0;
  color: #3d505a;
  line-height: 1.6;
}

.gallery-item {
  text-align: center;
  background: #f8fbff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.gallery-item h4 {
  color: var(--navy);
  margin: 12px 12px 0 12px;
  font-size: 1rem;
}

.gallery-item p {
  color: #4a6a8a;
  font-size: 0.9rem;
  padding: 0 12px 12px 12px;
  margin: 0;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 95, 189, 0.08), rgba(15, 143, 120, 0.08));
  border: 2px solid rgba(15, 95, 189, 0.12);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 1100px) {
  .process-grid,
  .benefits-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .process-grid,
  .benefits-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
