/* MAIN VARIABLE DEFINITIONS (THEMATIC & UNIQUE NAMES ONLY) */
:root {
  --drsti-canvas: #0a0d14;
  --drsti-surface: #111622;
  --drsti-surface-light: #1e2538;
  --drsti-accent-emerald: #00d2c4;
  --drsti-accent-sky: #3b82f6;
  --drsti-ink-bright: #ffffff;
  --drsti-ink-soft: #94a3b8;
  --drsti-ink-deep: #0f172a;
  --drsti-spectrum: linear-gradient(135deg, #00d2c4, #3b82f6);
  --drsti-spectrum-alt: linear-gradient(135deg, #1e2538, #111622);
  --drsti-headline-font: 'Oswald', sans-serif;
  --drsti-body-font: 'Poppins', sans-serif;
  
  /* Visual Scalings */
  --drsti-radius: 16px;
  --drsti-gap: 10dvh;
  --drsti-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --drsti-shadow-glow: 0 0 20px rgba(0, 210, 196, 0.2);
}

/* BASE RESET & STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--drsti-body-font);
  background-color: var(--drsti-canvas);
  color: var(--drsti-ink-soft);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: var(--drsti-headline-font);
  color: var(--drsti-ink-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

p {
  line-height: 1.7;
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* SCROLL PROGRESS BAR */
.drsti-progress-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--drsti-spectrum);
  width: 0%;
  z-index: 10001;
  animation: drsti-grow-bar linear;
  animation-timeline: scroll();
}

@keyframes drsti-grow-bar {
  to { width: 100%; }
}

/* SCROLL REVEAL EFFECT */
.drsti-scroll-reveal {
  opacity: 1;
  animation: drsti-fade-in-up linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes drsti-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HEADER COMPONENT */
.drsti-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--drsti-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--drsti-shadow);
}

.drsti-navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drsti-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--drsti-headline-font);
  font-size: 1.5rem;
  color: var(--drsti-ink-bright);
  font-weight: 700;
}

.drsti-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--drsti-accent-emerald);
}

.drsti-nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.drsti-nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--drsti-ink-soft);
  position: relative;
  padding: 0.5rem 0;
}

.drsti-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--drsti-accent-emerald);
  transition: width 0.3s ease;
}

.drsti-nav-link:hover {
  color: var(--drsti-ink-bright);
}

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

.drsti-nav-link.active {
  color: var(--drsti-ink-bright);
}

/* Hamburguer menu markup-only styling */
.drsti-burger-check {
  display: none;
}

.drsti-burger-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1002;
}

.drsti-burger-bar {
  width: 28px;
  height: 3px;
  background-color: var(--drsti-ink-bright);
  transition: all 0.3s ease;
}

/* HERO COMPONENT - PRESET A FULLSCREEN */
.drsti-hero-spot {
  position: relative;
  height: 100vh;
  min-height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drsti-hero-spot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 13, 20, 0.75);
}

.drsti-hero-body {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
  text-align: center;
}

.drsti-hero-tag {
  color: var(--drsti-accent-emerald);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.drsti-hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--drsti-ink-bright);
}

.drsti-hero-descr {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--drsti-ink-soft);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.drsti-pill-trigger {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--drsti-spectrum);
  color: var(--drsti-ink-bright);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  letter-spacing: 0.1em;
  box-shadow: var(--drsti-shadow-glow);
  transition: all 0.3s ease;
}

.drsti-pill-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 210, 196, 0.4);
}

/* FLOAT STATS BAR - PRESET A */
.drsti-floating-stats {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.drsti-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.drsti-stat-card {
  background-color: var(--drsti-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--drsti-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--drsti-shadow);
}

.drsti-stat-num {
  font-family: var(--drsti-headline-font);
  font-size: 3rem;
  color: var(--drsti-accent-emerald);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.drsti-stat-label {
  font-size: 0.95rem;
  color: var(--drsti-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ZIGZAG WRITING SECTIONS */
.drsti-zigzag-outer {
  padding: var(--drsti-gap) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.drsti-zigzag-box {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.drsti-zigzag-box:last-child {
  margin-bottom: 0;
}

.drsti-zigzag-box.drsti-reverse {
  flex-direction: row-reverse;
}

.drsti-zigzag-media {
  flex: 1;
  position: relative;
}

.drsti-zigzag-media-container {
  overflow: hidden;
  border-radius: var(--drsti-radius);
  box-shadow: var(--drsti-shadow);
}

.drsti-zigzag-box:nth-child(1) .drsti-zigzag-media-container {
  clip-path: polygon(0% 0%, 92% 0%, 100% 100%, 0% 100%);
}

.drsti-zigzag-box:nth-child(2) .drsti-zigzag-media-container {
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.drsti-zigzag-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.drsti-zigzag-box:hover .drsti-zigzag-img {
  transform: scale(1.05);
}

.drsti-zigzag-content {
  flex: 1;
}

.drsti-zigzag-tagline {
  color: var(--drsti-accent-sky);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.drsti-zigzag-heading {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.drsti-zigzag-text {
  margin-bottom: 1.5rem;
}

/* FEATURES GRID COMPONENT */
.drsti-features-segment {
  background-color: var(--drsti-surface);
  padding: var(--drsti-gap) 2rem;
}

.drsti-segment-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.drsti-segment-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.drsti-feat-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.drsti-feat-card {
  background-color: var(--drsti-canvas);
  border-left: 4px solid var(--drsti-accent-emerald);
  border-radius: var(--drsti-radius);
  padding: 2.5rem;
  box-shadow: var(--drsti-shadow);
  transition: all 0.3s ease;
}

.drsti-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--drsti-shadow-glow);
  border-left-color: var(--drsti-accent-sky);
}

.drsti-feat-icon-frame {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--drsti-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.drsti-feat-icon {
  width: 28px;
  height: 28px;
  fill: var(--drsti-accent-emerald);
}

.drsti-feat-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* HOW IT WORKS TIMELINE - PRESET A LEFT */
.drsti-timeline-layout {
  padding: var(--drsti-gap) 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.drsti-timeline-track {
  position: relative;
  margin-top: 4rem;
}

.drsti-timeline-track::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: rgba(255, 255, 255, 0.1);
}

.drsti-timeline-node {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 100px;
}

.drsti-timeline-node:last-child {
  margin-bottom: 0;
}

.drsti-timeline-number {
  position: absolute;
  left: 25px;
  top: 0;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: var(--drsti-spectrum);
  color: var(--drsti-ink-bright);
  font-family: var(--drsti-headline-font);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--drsti-shadow);
  z-index: 2;
}

.drsti-timeline-box {
  background-color: var(--drsti-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: var(--drsti-radius);
  box-shadow: var(--drsti-shadow);
}

.drsti-timeline-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--drsti-ink-bright);
}

/* CTA STRIP */
.drsti-cta-strip {
  position: relative;
  padding: var(--drsti-gap) 2rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.drsti-cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 13, 20, 0.8);
}

.drsti-cta-body {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.drsti-cta-heading {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.drsti-cta-lead {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--drsti-ink-soft);
}

/* EXPERT SPECIFIC SECTION LAYOUT */
.drsti-expert-bio-row {
  display: flex;
  gap: 4rem;
  max-width: 1100px;
  margin: var(--drsti-gap) auto;
  padding: 0 2rem;
  align-items: center;
}

.drsti-expert-photo {
  flex: 1;
  border-radius: var(--drsti-radius);
  overflow: hidden;
  box-shadow: var(--drsti-shadow);
}

.drsti-expert-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.drsti-expert-bio-info {
  flex: 1.2;
}

.drsti-sub-role {
  color: var(--drsti-accent-emerald);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.drsti-expert-name {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.drsti-expert-para {
  margin-bottom: 1.5rem;
}

/* RESERVE SPECIFIC FORM LAYOUT */
.drsti-reserve-container {
  max-width: 700px;
  margin: var(--drsti-gap) auto;
  padding: 0 2rem;
}

.drsti-reserve-card {
  background-color: var(--drsti-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--drsti-radius);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--drsti-shadow);
}

.drsti-reserve-form-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

.drsti-form-group {
  margin-bottom: 1.5rem;
}

.drsti-field-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--drsti-ink-bright);
}

.drsti-text-control {
  width: 100%;
  background-color: var(--drsti-canvas);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  color: var(--drsti-ink-bright);
  font-family: var(--drsti-body-font);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.drsti-text-control:focus {
  outline: none;
  border-color: var(--drsti-accent-emerald);
  box-shadow: 0 0 10px rgba(0, 210, 196, 0.2);
}

.drsti-terms-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.drsti-terms-agree input {
  margin-top: 0.25rem;
}

.drsti-btn-submit {
  width: 100%;
  padding: 1.2rem;
  background: var(--drsti-spectrum);
  border: none;
  border-radius: 999px;
  color: var(--drsti-ink-bright);
  font-family: var(--drsti-headline-font);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  box-shadow: var(--drsti-shadow-glow);
  transition: all 0.3s ease;
}

.drsti-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 210, 196, 0.4);
}

.drsti-contact-anchor {
  display: block;
  text-align: center;
  margin-top: 2rem;
  color: var(--drsti-accent-emerald);
  font-weight: 500;
  text-decoration: underline;
}

/* RESERVE EXTRA DETAILS & INFO CARDS */
.drsti-prep-seg {
  max-width: 1000px;
  margin: var(--drsti-gap) auto;
  padding: 0 2rem;
}

.drsti-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.drsti-prep-card {
  background-color: var(--drsti-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--drsti-radius);
  padding: 2rem;
  box-shadow: var(--drsti-shadow);
}

.drsti-prep-icon-wrap {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--drsti-canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.drsti-prep-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: var(--drsti-accent-sky);
}

.drsti-prep-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.drsti-prep-bullets {
  list-style: none;
  margin-top: 1rem;
}

.drsti-prep-bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.drsti-prep-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--drsti-accent-emerald);
}

/* FAQ ACCORDION COMPONENT (CSS ONLY) */
.drsti-faq-stack {
  max-width: 800px;
  margin: var(--drsti-gap) auto;
  padding: 0 2rem;
}

.drsti-faq-heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.drsti-faq-entry {
  background-color: var(--drsti-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--drsti-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.drsti-faq-checkbox {
  display: none;
}

.drsti-faq-query {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-family: var(--drsti-headline-font);
  font-size: 1.25rem;
  color: var(--drsti-ink-bright);
}

.drsti-faq-query::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--drsti-accent-emerald);
  transition: transform 0.3s ease;
}

.drsti-faq-checkbox:checked ~ .drsti-faq-query::after {
  content: '-';
}

.drsti-faq-reply {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2rem;
}

.drsti-faq-checkbox:checked ~ .drsti-faq-reply {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

/* LEGAL PAGES STYLING */
.drsti-legal-scaffold {
  max-width: 900px;
  margin: var(--drsti-gap) auto;
  padding: 0 2rem;
  flex: 1;
}

.drsti-legal-header {
  font-size: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.drsti-legal-segment {
  margin-bottom: 2.5rem;
}

.drsti-legal-segment h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.drsti-legal-segment p {
  margin-bottom: 1rem;
}

/* FOOTER COMPONENT */
.drsti-footer-wrap {
  background-color: #05070a;
  padding: 4rem 2rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

.drsti-footer-upper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.drsti-footer-col {
  flex: 1;
}

.drsti-footer-col.drsti-text-col {
  flex: 1.5;
}

.drsti-footer-disclaimer {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--drsti-ink-soft);
  margin-top: 1.5rem;
}

.drsti-footer-headline {
  font-family: var(--drsti-headline-font);
  font-size: 1.1rem;
  color: var(--drsti-ink-bright);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.drsti-footer-links {
  list-style: none;
}

.drsti-footer-links li {
  margin-bottom: 0.75rem;
}

.drsti-footer-links a {
  font-size: 0.95rem;
  color: var(--drsti-ink-soft);
}

.drsti-footer-links a:hover {
  color: var(--drsti-accent-emerald);
}

.drsti-footer-lower {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

/* COOKIE NOTICE BANNER */
.drsti-cookie-guard {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--drsti-surface);
  border-top: 2px solid var(--drsti-accent-emerald);
  padding: 1.5rem 2rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
}

.drsti-cookie-guard-body {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.drsti-cookie-guard-text {
  font-size: 0.95rem;
  color: var(--drsti-ink-bright);
}

.drsti-cookie-guard-actions {
  display: flex;
  gap: 1rem;
}

.drsti-cookie-btn {
  padding: 0.6rem 1.75rem;
  border: none;
  font-family: var(--drsti-headline-font);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.drsti-cookie-btn.drsti-accept {
  background: var(--drsti-spectrum);
  color: var(--drsti-ink-bright);
}

.drsti-cookie-btn.drsti-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--drsti-ink-soft);
}

.drsti-cookie-btn.drsti-accept:hover {
  box-shadow: var(--drsti-shadow-glow);
}

.drsti-cookie-btn.drsti-decline:hover {
  color: var(--drsti-ink-bright);
  border-color: var(--drsti-ink-bright);
}

/* THANK YOU STYLING */
.drsti-thank-block {
  text-align: center;
  max-width: 700px;
  margin: var(--drsti-gap) auto;
  padding: 0 2rem;
}

.drsti-thank-decor {
  width: 80px;
  height: 80px;
  background: var(--drsti-spectrum);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  box-shadow: var(--drsti-shadow-glow);
}

.drsti-thank-decor svg {
  width: 40px;
  height: 40px;
  fill: var(--drsti-ink-bright);
}

.drsti-thank-heading {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.drsti-thank-txt {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--drsti-ink-soft);
}

.drsti-thank-image-area {
  margin-top: 3rem;
  border-radius: var(--drsti-radius);
  overflow: hidden;
  box-shadow: var(--drsti-shadow);
}

.drsti-thank-image-area img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* MOBILE RESPONSIVE ADAPTATIONS */
@media (max-width: 992px) {
  :root {
    --drsti-gap: 6dvh;
  }
  
  .drsti-hero-title {
    font-size: 2.75rem;
  }
  
  .drsti-zigzag-box,
  .drsti-zigzag-box.drsti-reverse {
    flex-direction: column;
    gap: 2rem;
  }
  
  .drsti-zigzag-img {
    height: 300px;
  }
  
  .drsti-zigzag-box:nth-child(1) .drsti-zigzag-media-container,
  .drsti-zigzag-box:nth-child(2) .drsti-zigzag-media-container {
    clip-path: none;
  }
  
  .drsti-feat-grid {
    grid-template-columns: 1fr;
  }
  
  .drsti-expert-bio-row {
    flex-direction: column;
    gap: 3rem;
  }
  
  .drsti-expert-img {
    height: 350px;
  }
  
  .drsti-prep-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .drsti-burger-label {
    display: flex;
  }
  
  .drsti-nav-menu {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background-color: var(--drsti-surface);
    flex-direction: column;
    padding: 3rem 2rem;
    transition: left 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 1000;
  }
  
  .drsti-burger-check:checked ~ .drsti-nav-menu {
    left: 0;
  }
  
  .drsti-burger-check:checked ~ .drsti-burger-label .drsti-burger-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .drsti-burger-check:checked ~ .drsti-burger-label .drsti-burger-bar:nth-child(2) {
    opacity: 0;
  }
  
  .drsti-burger-check:checked ~ .drsti-burger-label .drsti-burger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  
  .drsti-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .drsti-floating-stats {
    margin-top: -30px;
  }
  
  .drsti-timeline-track::before {
    left: 20px;
  }
  
  .drsti-timeline-node {
    padding-left: 60px;
  }
  
  .drsti-timeline-number {
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
  
  .drsti-cookie-guard-body {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    text-align: center;
  }
  
  .drsti-cookie-guard-actions {
    justify-content: center;
  }
  
  .drsti-footer-upper {
    flex-direction: column;
    gap: 2.5rem;
  }
}