:root {
  /* LIGHT Theme Palette centered around wellness teal/emerald */
  --dc-canvas: #FAF9F6;              /* Creamy healthy background styling */
  --dc-surface: #FFFFFF;             /* Pure solid white for high-priority grids */
  --dc-surface-darker: #F3F4F6;      /* Slate light variant for subtle separation */
  --dc-emerald: #0F766E;             /* Deep rich medical/botanical emerald tone */
  --dc-emerald-hover: #0D9488;       /* Glowing dynamic state for CTA interactions */
  --dc-emerald-alpha: rgba(15, 118, 110, 0.12); /* Semi-transparent emerald styling */
  --dc-ink-major: #111827;           /* High contrast charcoal grey for titles */
  --dc-ink-minor: #4B5563;           /* Balanced soft grey for descriptive lines */
  
  /* Fonts choices according to layout criteria */
  --dc-font-display: 'Josefin Sans', sans-serif;
  --dc-font-body: 'Mulish', sans-serif;

  /* Custom Shell Constraints */
  --dc-shell-width: 1120px;
  
  /* Soft Edge styling variable (Soft 12-20px range picked) */
  --dc-radius: 14px;
  
  /* Raised depth shadow profile */
  --dc-shadow: 0 10px 15px -3px rgba(15, 118, 110, 0.08), 0 4px 6px -2px rgba(15, 118, 110, 0.04);
}

/* Global resets and default styles */
body {
  background-color: var(--dc-canvas);
  color: var(--dc-ink-major);
  font-family: var(--dc-font-body);
  margin: 0;
  padding: 0;
}

/* Specific styling elements overriding default values safely */
.dc-shell {
  max-width: var(--dc-shell-width);
  width: 100%;
}

/* Heading Specific Styling uppercase constraint */
.dc-main-title {
  font-family: var(--dc-font-display);
  text-transform: uppercase;
}

/* Interactive transitions and custom focus on elements */
.dc-action-pill {
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.dc-action-pill:hover,
.dc-action-pill:focus {
  background-color: var(--dc-emerald-hover) !important;
  transform: translateY(-2px);
  outline: none;
}

/* Decorative backdrop positioning details with absolute structures */
.dc-background-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.dc-blob-1 {
  position: absolute;
  top: -100px;
  right: -150px;
  opacity: 0.6;
}

.dc-blob-2 {
  position: absolute;
  bottom: 25%;
  left: -200px;
  opacity: 0.5;
}

/* Testimonial structural enhancements for better readability */
.dc-testimonial-card {
  position: relative;
  transition: transform 0.2s ease-in-out;
}
.dc-testimonial-card:hover {
  transform: scale(1.02);
}

/* Sticky conversion container logic for easy responsive handling */
@media (min-width: 1024px) {
  .dc-flow-action-wrapper {
    position: sticky;
    bottom: 24px;
    z-index: 30;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(15, 118, 110, 0.1);
  }
}