/* Custom CSS Variables based on topic and design guidelines */
:root {
  /* Theme Palette: Light cream, rich forest green accents, deep charcoal ink */
  --gaya-sehat-canvas: #faf8f5;
  --gaya-sehat-paper: #ffffff;
  --gaya-sehat-forest-primary: #1e5128;
  --gaya-sehat-leaf-secondary: #4e9f3d;
  --gaya-sehat-warm-tint: #f2ede4;
  --gaya-sehat-charcoal-ink: #1a1a2a;
  --gaya-sehat-gray-muted: #626272;
  --gaya-sehat-soft-gold: #d8b063;
  
  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  
  /* Design Scales */
  --gaya-sehat-radius: 16px; /* soft style scale */
  --gaya-sehat-padding: 10dvh; /* normal scale */
  --gaya-sehat-shadow: 0 10px 30px rgba(30, 81, 40, 0.08); /* raised shadow style */
  --gaya-sehat-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* CSS Reset & Basics */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--gaya-sehat-canvas);
  color: var(--gaya-sehat-charcoal-ink);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--gaya-sehat-transition);
}

/* Announcement Bar style */
.sehat-announcement-strip {
  background-color: var(--gaya-sehat-forest-primary);
  color: var(--gaya-sehat-canvas);
  font-size: 0.85rem;
  padding: 10px 20px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.sehat-announcement-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sehat-announcement-link {
  color: var(--gaya-sehat-soft-gold);
  font-weight: 600;
  border-bottom: 1px dashed var(--gaya-sehat-soft-gold);
}

.sehat-announcement-link:hover {
  color: var(--gaya-sehat-canvas);
  border-color: var(--gaya-sehat-canvas);
}

/* Navigation Header: Light background, slim line, sticky shadow on scroll stimulation */
.sehat-navigation-header {
  background-color: var(--gaya-sehat-paper);
  border-bottom: 1px solid rgba(30, 81, 40, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--gaya-sehat-transition);
}

.sehat-navigation-header:focus-within {
  box-shadow: var(--gaya-sehat-shadow);
}

.sehat-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sehat-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gaya-sehat-forest-primary);
}

.sehat-logo-icon {
  width: 32px;
  height: 32px;
}

.sehat-brand-text {
  letter-spacing: -0.5px;
}

/* Nav Menu and Hamburger */
.sehat-nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.sehat-nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gaya-sehat-charcoal-ink);
  position: relative;
  padding: 5px 0;
}

.sehat-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gaya-sehat-forest-primary);
  transition: var(--gaya-sehat-transition);
}

.sehat-nav-link:hover::after,
.sehat-nav-link.active::after {
  width: 100%;
}

.sehat-nav-link.active {
  color: var(--gaya-sehat-forest-primary);
  font-weight: 600;
}

.sehat-menu-checkbox {
  display: none;
}

.sehat-hamburger-button {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.sehat-hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--gaya-sehat-forest-primary);
  border-radius: 2px;
  transition: var(--gaya-sehat-transition);
}

/* Hero Section: Preset B (Light Split) */
.sehat-split-hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: calc(85vh - 50px);
  background-color: var(--gaya-sehat-paper);
}

.sehat-hero-text-side {
  background-color: var(--gaya-sehat-warm-tint);
  padding: 8% 10% 8% 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.sehat-hero-badge {
  background-color: var(--gaya-sehat-forest-primary);
  color: var(--gaya-sehat-canvas);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--gaya-sehat-radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.sehat-hero-main-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gaya-sehat-forest-primary);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}

.sehat-hero-subtitle {
  font-size: 1.1rem;
  color: var(--gaya-sehat-gray-muted);
  margin-bottom: 35px;
  max-width: 520px;
}

.sehat-hero-button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons style */
.sehat-solid-button-link {
  display: inline-block;
  background-color: var(--gaya-sehat-forest-primary);
  color: var(--gaya-sehat-canvas);
  padding: 14px 28px;
  border-radius: var(--gaya-sehat-radius);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--gaya-sehat-shadow);
}

.sehat-solid-button-link:hover {
  background-color: var(--gaya-sehat-leaf-secondary);
  transform: translateY(-2px);
}

.sehat-outline-button-link {
  display: inline-block;
  background-color: transparent;
  color: var(--gaya-sehat-forest-primary);
  border: 2px solid var(--gaya-sehat-forest-primary);
  padding: 12px 26px;
  border-radius: var(--gaya-sehat-radius);
  font-weight: 600;
  font-size: 0.95rem;
}

.sehat-outline-button-link:hover {
  background-color: var(--gaya-sehat-forest-primary);
  color: var(--gaya-sehat-canvas);
}

.sehat-hero-image-side {
  position: relative;
}

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

/* Content Section: Preset B Magazine Strip */
.sehat-magazine-section {
  padding: var(--gaya-sehat-padding) 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.sehat-full-width-strip {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  border-radius: var(--gaya-sehat-radius);
  box-shadow: var(--gaya-sehat-shadow);
  margin-bottom: 48px;
}

.sehat-three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sehat-magazine-column {
  border-top: 3px solid var(--gaya-sehat-forest-primary);
  padding-top: 24px;
}

.sehat-column-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 12px;
}

.sehat-column-text {
  font-size: 0.95rem;
  color: var(--gaya-sehat-gray-muted);
}

/* General Section Header Center */
.sehat-section-header-center {
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.sehat-section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 16px;
}

.sehat-section-lead {
  font-size: 1.05rem;
  color: var(--gaya-sehat-gray-muted);
}

/* Features Section: Preset B Masonry style */
.sehat-features-masonry {
  padding: var(--gaya-sehat-padding) 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.sehat-masonry-wrapper {
  columns: 2;
  column-gap: 30px;
}

.sehat-masonry-item {
  break-inside: avoid;
  background-color: var(--gaya-sehat-paper);
  border-radius: var(--gaya-sehat-radius);
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: var(--gaya-sehat-shadow);
  transition: var(--gaya-sehat-transition);
}

.sehat-masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(30, 81, 40, 0.12);
}

.sehat-masonry-item.item-accent-bg {
  background-color: var(--gaya-sehat-warm-tint);
}

.sehat-feature-icon-box {
  background-color: var(--gaya-sehat-forest-primary);
  color: var(--gaya-sehat-canvas);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.sehat-feature-icon {
  width: 24px;
  height: 24px;
}

.sehat-feature-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 12px;
}

.sehat-feature-desc {
  font-size: 0.95rem;
  color: var(--gaya-sehat-gray-muted);
  margin-bottom: 16px;
}

.sehat-feature-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gaya-sehat-forest-primary);
  border: 1px solid var(--gaya-sehat-forest-primary);
  padding: 4px 10px;
  border-radius: 999px;
}

/* How It Works: Preset B Progress Track */
.sehat-progress-track-section {
  padding: var(--gaya-sehat-padding) 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.sehat-progress-track-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.sehat-step-node {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sehat-step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--gaya-sehat-paper);
  border: 2px dashed var(--gaya-sehat-forest-primary);
  color: var(--gaya-sehat-forest-primary);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  transition: var(--gaya-sehat-transition);
}

.sehat-step-node.active-step .sehat-step-circle {
  background-color: var(--gaya-sehat-forest-primary);
  border-style: solid;
  color: var(--gaya-sehat-canvas);
}

.sehat-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 8px;
}

.sehat-step-desc {
  font-size: 0.9rem;
  color: var(--gaya-sehat-gray-muted);
  max-width: 250px;
  margin: 0 auto;
}

.sehat-step-connector {
  flex-grow: 1;
  border-top: 2px dashed var(--gaya-sehat-forest-primary);
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

/* CTA Strip style without images: Preset B */
.sehat-cta-accent-strip {
  background-color: var(--gaya-sehat-forest-primary);
  color: var(--gaya-sehat-canvas);
  padding: calc(var(--gaya-sehat-padding) * 0.8) 24px;
  text-align: center;
}

.sehat-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sehat-cta-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.sehat-cta-description {
  font-size: 1.1rem;
  color: var(--gaya-sehat-warm-tint);
  margin-bottom: 32px;
}

.sehat-cta-button-light {
  display: inline-block;
  background-color: var(--gaya-sehat-canvas);
  color: var(--gaya-sehat-forest-primary);
  padding: 14px 32px;
  border-radius: var(--gaya-sehat-radius);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sehat-cta-button-light:hover {
  background-color: var(--gaya-sehat-warm-tint);
  transform: translateY(-2px);
}

/* Expert Hero Section layout */
.sehat-expert-hero {
  background-color: var(--gaya-sehat-warm-tint);
  padding: calc(var(--gaya-sehat-padding) * 0.8) 24px;
  text-align: center;
}

.sehat-expert-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.sehat-expert-hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 16px;
}

.sehat-expert-hero-lead {
  font-size: 1.2rem;
  color: var(--gaya-sehat-charcoal-ink);
}

/* Expert Bio Split Section: Preset B */
.sehat-bio-split-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--gaya-sehat-padding) 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sehat-bio-image-col {
  position: relative;
}

.sehat-bio-portrait {
  width: 100%;
  height: auto;
  border-radius: var(--gaya-sehat-radius);
  box-shadow: var(--gaya-sehat-shadow);
}

.sehat-bio-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sehat-bio-tag {
  color: var(--gaya-sehat-leaf-secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.sehat-bio-name {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 20px;
}

.sehat-bio-summary {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gaya-sehat-charcoal-ink);
  margin-bottom: 24px;
}

.sehat-bio-description {
  color: var(--gaya-sehat-gray-muted);
  font-style: italic;
  font-size: 1.05rem;
  border-left: 3px solid var(--gaya-sehat-forest-primary);
  padding-left: 20px;
}

/* Numerical Stats blocks: Preset B */
.sehat-numerical-stats-panel {
  background-color: var(--gaya-sehat-paper);
  padding: 40px 24px;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sehat-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.sehat-stat-card {
  display: flex;
  flex-direction: column;
}

.sehat-stat-big-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gaya-sehat-forest-primary);
  font-weight: 700;
  margin-bottom: 6px;
}

.sehat-stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gaya-sehat-gray-muted);
}

/* Accordion approaches layout: CSS based styled for Preset B */
.sehat-approaches-accordion-section {
  padding: var(--gaya-sehat-padding) 24px;
  max-width: 900px;
  margin: 0 auto;
}

.sehat-accordion-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sehat-accordion-block {
  background-color: var(--gaya-sehat-paper);
  border-radius: var(--gaya-sehat-radius);
  box-shadow: var(--gaya-sehat-shadow);
  padding: 24px 30px;
}

.sehat-accordion-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--gaya-sehat-warm-tint);
  padding-bottom: 10px;
}

.sehat-accordion-content-box p {
  font-size: 0.95rem;
  color: var(--gaya-sehat-gray-muted);
}

/* Teaser block style with overlay background */
.sehat-expert-teaser {
  padding: var(--gaya-sehat-padding) 24px;
  text-align: center;
}

.sehat-teaser-inner {
  max-width: 700px;
  margin: 0 auto;
}

.sehat-teaser-heading {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 16px;
}

.sehat-teaser-sub {
  font-size: 1.05rem;
  color: var(--gaya-sehat-charcoal-ink);
  margin-bottom: 30px;
}

/* Booking Section Split Layout: Preset B */
.sehat-booking-split-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--gaya-sehat-padding) 24px;
  display: grid;
  grid-template-columns: 48fr 52fr;
  gap: 60px;
  align-items: flex-start;
}

.sehat-booking-headline {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.sehat-booking-intro {
  font-size: 1.05rem;
  color: var(--gaya-sehat-gray-muted);
  margin-bottom: 40px;
}

.sehat-info-bullet-card {
  display: flex;
  gap: 20px;
  background-color: var(--gaya-sehat-paper);
  padding: 24px;
  border-radius: var(--gaya-sehat-radius);
  box-shadow: var(--gaya-sehat-shadow);
  margin-bottom: 24px;
}

.sehat-bullet-icon {
  font-size: 2rem;
  line-height: 1;
}

.sehat-bullet-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 10px;
}

.sehat-bullet-desc {
  font-size: 0.95rem;
  color: var(--gaya-sehat-gray-muted);
  margin-bottom: 10px;
}

.sehat-bullet-list {
  list-style: none;
}

.sehat-bullet-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--gaya-sehat-charcoal-ink);
  margin-bottom: 6px;
}

.sehat-bullet-marker {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gaya-sehat-leaf-secondary);
  position: absolute;
  left: 0;
  top: 7px;
}

.sehat-booking-mail-link {
  color: var(--gaya-sehat-forest-primary);
  font-weight: 600;
  border-bottom: 1px solid var(--gaya-sehat-forest-primary);
}

/* Form Container Box style */
.sehat-form-container-box {
  background-color: var(--gaya-sehat-paper);
  border-radius: var(--gaya-sehat-radius);
  padding: 40px;
  box-shadow: var(--gaya-sehat-shadow);
  border-top: 4px solid var(--gaya-sehat-forest-primary);
}

.sehat-form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 6px;
}

.sehat-form-subtitle {
  font-size: 0.9rem;
  color: var(--gaya-sehat-gray-muted);
  margin-bottom: 30px;
}

.sehat-actual-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sehat-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sehat-field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gaya-sehat-charcoal-ink);
}

.sehat-text-input, .sehat-textarea {
  font-family: var(--font-body);
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--gaya-sehat-radius);
  border: 1px solid rgba(0,0,0,0.1);
  background-color: var(--gaya-sehat-canvas);
  color: var(--gaya-sehat-charcoal-ink);
  font-size: 0.95rem;
  transition: var(--gaya-sehat-transition);
}

.sehat-text-input:focus, .sehat-textarea:focus {
  outline: none;
  border-color: var(--gaya-sehat-forest-primary);
  background-color: var(--gaya-sehat-paper);
}

.sehat-textarea {
  min-height: 120px;
  resize: vertical;
}

.sehat-form-checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sehat-checkbox-input {
  margin-top: 4px;
}

.sehat-checkbox-label {
  font-size: 0.8rem;
  color: var(--gaya-sehat-gray-muted);
  line-height: 1.4;
}

.sehat-form-inline-link {
  color: var(--gaya-sehat-forest-primary);
  text-decoration: underline;
}

.sehat-form-submit-btn {
  font-family: var(--font-body);
  background-color: var(--gaya-sehat-forest-primary);
  color: var(--gaya-sehat-canvas);
  border: none;
  padding: 14px 28px;
  border-radius: var(--gaya-sehat-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--gaya-sehat-transition);
  box-shadow: var(--gaya-sehat-shadow);
  font-size: 1rem;
}

.sehat-form-submit-btn:hover {
  background-color: var(--gaya-sehat-leaf-secondary);
  transform: translateY(-2px);
}

/* FAQ Details Accordion section style */
.sehat-faq-block-section {
  padding: var(--gaya-sehat-padding) 24px;
  background-color: var(--gaya-sehat-warm-tint);
}

.sehat-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sehat-faq-item-details {
  background-color: var(--gaya-sehat-paper);
  border-radius: var(--gaya-sehat-radius);
  padding: 20px 24px;
  box-shadow: var(--gaya-sehat-shadow);
}

.sehat-faq-question-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gaya-sehat-forest-primary);
  cursor: pointer;
  list-style: none; /* remove default triangle */
}

.sehat-faq-question-title::-webkit-details-marker {
  display: none;
}

.sehat-faq-answer-box {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.sehat-faq-answer-box p {
  font-size: 0.9rem;
  color: var(--gaya-sehat-gray-muted);
}

/* Legal Documents Content layout (Privacy & Terms) */
.sehat-legal-content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--gaya-sehat-padding) 24px;
}

.sehat-legal-header {
  border-bottom: 2px solid var(--gaya-sehat-forest-primary);
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.sehat-legal-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gaya-sehat-forest-primary);
}

.sehat-legal-date {
  font-size: 0.85rem;
  color: var(--gaya-sehat-gray-muted);
  margin-top: 6px;
}

.sehat-legal-block {
  margin-bottom: 40px;
}

.sehat-legal-subtitle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 16px;
}

.sehat-legal-block p {
  font-size: 0.95rem;
  color: var(--gaya-sehat-gray-muted);
  margin-bottom: 16px;
}

/* Thank You Page layout */
.sehat-thankyou-display {
  padding: var(--gaya-sehat-padding) 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.sehat-thankyou-card {
  background-color: var(--gaya-sehat-paper);
  border-radius: var(--gaya-sehat-radius);
  box-shadow: var(--gaya-sehat-shadow);
  overflow: hidden;
  max-width: 850px;
  display: grid;
  grid-template-columns: 40fr 60fr;
  align-items: center;
}

.sehat-thankyou-image-container {
  height: 100%;
  min-height: 350px;
}

.sehat-thankyou-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sehat-thankyou-text-content {
  padding: 40px;
}

.sehat-thank-tag {
  color: var(--gaya-sehat-leaf-secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.sehat-thank-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--gaya-sehat-forest-primary);
  margin: 10px 0 20px 0;
  line-height: 1.25;
}

.sehat-thank-desc {
  font-size: 0.95rem;
  color: var(--gaya-sehat-gray-muted);
  margin-bottom: 16px;
}

.sehat-thank-btn-wrap {
  margin-top: 30px;
}

/* Cookie Alert Banner */
.sehat-cookie-alert {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--gaya-sehat-paper);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
  padding: 15px 24px;
  z-index: 9999;
}

.sehat-cookie-text {
  font-size: 0.85rem;
  color: var(--gaya-sehat-charcoal-ink);
  margin-bottom: 10px;
}

.sehat-cookie-buttons {
  display: flex;
  gap: 10px;
}

.sehat-cookie-btn-accept {
  font-family: var(--font-body);
  background-color: var(--gaya-sehat-forest-primary);
  color: var(--gaya-sehat-canvas);
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.sehat-cookie-btn-decline {
  font-family: var(--font-body);
  background-color: var(--gaya-sehat-warm-tint);
  color: var(--gaya-sehat-charcoal-ink);
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
}

/* Footer Section */
.sehat-footer-main {
  background-color: var(--gaya-sehat-paper);
  border-top: 1px solid rgba(30, 81, 40, 0.08);
  padding: 60px 40px 30px 40px;
  color: var(--gaya-sehat-charcoal-ink);
}

.sehat-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.sehat-footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sehat-footer-tagline {
  font-size: 0.9rem;
  color: var(--gaya-sehat-gray-muted);
  max-width: 320px;
}

.sehat-footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gaya-sehat-forest-primary);
  margin-bottom: 20px;
}

.sehat-footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sehat-footer-link {
  font-size: 0.9rem;
  color: var(--gaya-sehat-gray-muted);
}

.sehat-footer-link:hover {
  color: var(--gaya-sehat-forest-primary);
  padding-left: 5px;
}

.sehat-footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 30px;
}

.sehat-footer-disclaimer {
  font-size: 0.8rem;
  color: var(--gaya-sehat-gray-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: justify;
}

.sehat-footer-copy {
  font-size: 0.8rem;
  color: var(--gaya-sehat-gray-muted);
  text-align: center;
}

/* Adaptive Design (Mobile Layouts 320px - 1440px) */
@media (max-width: 1024px) {
  .sehat-split-hero {
    grid-template-columns: 1fr;
  }
  
  .sehat-hero-text-side {
    padding: 60px 40px;
  }
  
  .sehat-hero-image-side {
    height: 400px;
  }
  
  .sehat-hero-main-title {
    font-size: 2.5rem;
  }
  
  .sehat-three-column-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .sehat-masonry-wrapper {
    columns: 1;
  }
  
  .sehat-booking-split-wrapper,
  .sehat-bio-split-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sehat-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  /* Hamburger Menu styles for mobile */
  .sehat-hamburger-button {
    display: flex;
  }
  
  .sehat-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--gaya-sehat-paper);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-200%);
    opacity: 0;
    transition: var(--gaya-sehat-transition);
  }
  
  .sehat-menu-checkbox:checked ~ .sehat-nav-menu {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* Animate Hamburger button */
  .sehat-menu-checkbox:checked ~ .sehat-hamburger-button .sehat-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .sehat-menu-checkbox:checked ~ .sehat-hamburger-button .sehat-hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .sehat-menu-checkbox:checked ~ .sehat-hamburger-button .sehat-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }
  
  .sehat-progress-track-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .sehat-step-connector {
    display: none;
  }
  
  .sehat-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sehat-thankyou-card {
    grid-template-columns: 1fr;
  }
  
  .sehat-thankyou-image-container {
    height: 250px;
    min-height: unset;
  }
  
  .sehat-form-container-box {
    padding: 24px;
  }
}