/* --- CSS VARIABLES & THEME SETUP (Light Theme) --- */
:root {
  --drishti-canvas-bg: #FCFBF7;
  --drishti-surface-card: #FFFFFF;
  --drishti-accent-emerald: #1C5A43;
  --drishti-accent-mint: #EAF5F0;
  --drishti-accent-sunglow: #E29B27;
  --drishti-ink-primary: #111827;
  --drishti-ink-secondary: #4B5563;
  --drishti-ink-muted: #9CA3AF;
  --drishti-border-tint: #E5E7EB;
  
  --font-display: 'Lora', serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Layout scale presets */
  --drishti-radius: 16px;
  --drishti-shadow-raised: 0 12px 30px rgba(28, 90, 67, 0.08);
  --drishti-shadow-hover: 0 20px 40px rgba(28, 90, 67, 0.15);
  --drishti-padding-box: 10vh;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--drishti-ink-primary);
  background-color: var(--drishti-canvas-bg);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--drishti-accent-emerald);
  line-height: 1.25;
}

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

/* --- COMMON UTILITIES (Self-made layout blocks) --- */
.drishti-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Scroll-driven progress bar */
.drishti-progress-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background-color: var(--drishti-accent-sunglow);
  z-index: 10000;
  animation: drishti-scroll-timeline linear;
  animation-timeline: scroll();
}

@keyframes drishti-scroll-timeline {
  to { width: 100%; }
}

/* --- HEADER AND NAVIGATION (Preset B) --- */
.drishti-masthead {
  background-color: var(--drishti-canvas-bg);
  border-bottom: 1px solid var(--drishti-border-tint);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.drishti-masthead:focus-within {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.drishti-masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.drishti-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drishti-brand-logo {
  width: 40px;
  height: 40px;
  fill: var(--drishti-accent-emerald);
}

.drishti-brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--drishti-accent-emerald);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation links */
.drishti-navigation-deck {
  display: flex;
  align-items: center;
  gap: 32px;
}

.drishti-navigation-deck a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--drishti-ink-secondary);
  position: relative;
  padding: 8px 0;
}

.drishti-navigation-deck a:hover,
.drishti-navigation-deck a.active {
  color: var(--drishti-accent-emerald);
}

.drishti-navigation-deck a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--drishti-accent-emerald);
  transition: width 0.3s ease;
}

.drishti-navigation-deck a:hover::after,
.drishti-navigation-deck a.active::after {
  width: 100%;
}

/* Hamburger menu (CSS-Only) */
.drishti-menu-toggle {
  display: none;
}

.drishti-menu-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.drishti-menu-burger span {
  width: 28px;
  height: 3px;
  background-color: var(--drishti-accent-emerald);
  transition: all 0.3s ease;
}

/* --- ANNOUNCEMENT STRIP (Preset B) --- */
.drishti-billboard-banner {
  background-color: var(--drishti-accent-emerald);
  color: #FFFFFF;
  text-align: center;
  padding: 10px 5%;
  font-size: 0.9rem;
  font-weight: 500;
}

.drishti-billboard-banner a {
  color: var(--drishti-accent-sunglow);
  text-decoration: underline;
  margin-left: 8px;
  font-weight: bold;
}

/* --- HERO SECTION - SPLIT (Preset B) --- */
.drishti-hero-split {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(85vh - 80px);
}

.drishti-hero-copyholder {
  background-color: var(--drishti-accent-mint);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 8vw 8vh 12%;
}

.drishti-hero-copyholder h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 24px;
}

.drishti-hero-copyholder p {
  font-size: 1.15rem;
  color: var(--drishti-ink-secondary);
  margin-bottom: 40px;
}

.drishti-hero-scenics {
  position: relative;
  overflow: hidden;
}

.drishti-hero-scenics img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BUTTONS */
.drishti-action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--drishti-accent-emerald);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: var(--drishti-radius);
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: var(--drishti-shadow-raised);
  border: 2px solid transparent;
}

.drishti-action-trigger:hover {
  background-color: var(--drishti-canvas-bg);
  color: var(--drishti-accent-emerald);
  border-color: var(--drishti-accent-emerald);
  transform: translateY(-2px);
  box-shadow: var(--drishti-shadow-hover);
}

.drishti-action-trigger-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--drishti-accent-sunglow);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: var(--drishti-radius);
  font-weight: 600;
  box-shadow: var(--drishti-shadow-raised);
}

.drishti-action-trigger-alt:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* --- MAGAZINE STRIP & COLUMNS (Preset B) --- */
.drishti-magazine-strip {
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.drishti-magazine-trio {
  padding: var(--drishti-padding-box) 0;
  background-color: var(--drishti-canvas-bg);
}

.drishti-magazine-trio-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.drishti-magazine-column {
  border-top: 3px solid var(--drishti-accent-emerald);
  padding-top: 24px;
}

.drishti-magazine-column h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--drishti-accent-emerald);
}

.drishti-magazine-column p {
  color: var(--drishti-ink-secondary);
  font-size: 0.95rem;
}

/* --- MASONRY FEATURES (Preset B) --- */
.drishti-features-masonry-wrapper {
  background-color: var(--drishti-accent-mint);
  padding: var(--drishti-padding-box) 0;
}

.drishti-features-heading {
  text-align: center;
  margin-bottom: 60px;
}

.drishti-features-heading h2 {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.drishti-features-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 3px;
  background-color: var(--drishti-accent-sunglow);
}

.drishti-masonry-grid {
  columns: 3 320px;
  column-gap: 28px;
}

.drishti-masonry-brick {
  background-color: var(--drishti-surface-card);
  border-radius: var(--drishti-radius);
  padding: 32px;
  margin-bottom: 28px;
  break-inside: avoid;
  box-shadow: var(--drishti-shadow-raised);
  transition: all 0.3s ease;
}

.drishti-masonry-brick:hover {
  transform: translateY(-6px);
  box-shadow: var(--drishti-shadow-hover);
}

.drishti-masonry-brick-icon {
  width: 48px;
  height: 48px;
  fill: var(--drishti-accent-emerald);
  margin-bottom: 20px;
}

.drishti-masonry-brick h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.drishti-masonry-brick p {
  font-size: 0.95rem;
  color: var(--drishti-ink-secondary);
}

/* --- HORIZONTAL PROGRESS TRACK (Preset B - How it works) --- */
.drishti-journey-track {
  padding: var(--drishti-padding-box) 0;
  background-color: var(--drishti-canvas-bg);
}

.drishti-journey-header {
  text-align: center;
  margin-bottom: 70px;
}

.drishti-journey-header h2 {
  font-size: 2.2rem;
}

.drishti-journey-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.drishti-journey-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  border-top: 2.5px dashed var(--drishti-accent-emerald);
  z-index: 1;
}

.drishti-journey-node {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

.drishti-journey-node-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--drishti-canvas-bg);
  border: 3px solid var(--drishti-accent-emerald);
  color: var(--drishti-accent-emerald);
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.drishti-journey-node:hover .drishti-journey-node-circle {
  background-color: var(--drishti-accent-emerald);
  color: #FFFFFF;
  transform: scale(1.1);
}

.drishti-journey-node.is-active .drishti-journey-node-circle {
  background-color: var(--drishti-accent-sunglow);
  border-color: var(--drishti-accent-sunglow);
  color: #FFFFFF;
}

.drishti-journey-node h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.drishti-journey-node p {
  font-size: 0.9rem;
  color: var(--drishti-ink-secondary);
}

/* --- CTA STRIP (Preset B - Color gradient background) --- */
.drishti-cta-backdrop {
  background: linear-gradient(135deg, var(--drishti-accent-emerald), #113627);
  color: #FFFFFF;
  padding: var(--drishti-padding-box) 0;
  text-align: center;
}

.drishti-cta-backdrop h2 {
  color: #FFFFFF;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.drishti-cta-backdrop p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--drishti-accent-mint);
}

/* --- EXPERT PAGE COMPONENTS (Preset B) --- */
.drishti-bio-block {
  padding: var(--drishti-padding-box) 0;
  background-color: var(--drishti-canvas-bg);
}

.drishti-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.drishti-bio-visual {
  border-radius: var(--drishti-radius);
  overflow: hidden;
  box-shadow: var(--drishti-shadow-raised);
  height: 550px;
}

.drishti-bio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drishti-bio-content h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.drishti-bio-subtitle {
  font-size: 1.1rem;
  color: var(--drishti-accent-sunglow);
  font-weight: 600;
  margin-bottom: 24px;
}

.drishti-bio-content p {
  color: var(--drishti-ink-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Stats Blocks Row */
.drishti-stats-row {
  background-color: var(--drishti-accent-mint);
  padding: 60px 0;
}

.drishti-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.drishti-stat-card {
  text-align: center;
}

.drishti-stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--drishti-accent-emerald);
  margin-bottom: 10px;
}

.drishti-stat-label {
  font-size: 0.95rem;
  color: var(--drishti-ink-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CSS Only Accordion (All expanded/style visual block) */
.drishti-methodology-section {
  padding: var(--drishti-padding-box) 0;
}

.drishti-methodology-header {
  text-align: center;
  margin-bottom: 60px;
}

.drishti-methodology-header h2 {
  font-size: 2.2rem;
}

.drishti-accordion-list {
  max-width: 800px;
  margin: 0 auto;
}

.drishti-accordion-item {
  background-color: var(--drishti-surface-card);
  border-radius: var(--drishti-radius);
  margin-bottom: 20px;
  box-shadow: var(--drishti-shadow-raised);
  overflow: hidden;
  border-left: 4px solid var(--drishti-accent-emerald);
}

.drishti-accordion-summary {
  padding: 24px 32px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--drishti-accent-emerald);
  outline: none;
  cursor: default;
}

.drishti-accordion-details {
  padding: 0 32px 28px;
  color: var(--drishti-ink-secondary);
  font-size: 0.95rem;
}

/* --- BOOKING RESERVE PAGE (Preset B - 2 Columns) --- */
.drishti-booking-viewport {
  padding: var(--drishti-padding-box) 0;
}

.drishti-booking-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.drishti-booking-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.drishti-booking-card {
  background-color: var(--drishti-surface-card);
  border-radius: var(--drishti-radius);
  padding: 30px;
  box-shadow: var(--drishti-shadow-raised);
  border-top: 3px solid var(--drishti-accent-sunglow);
}

.drishti-booking-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.drishti-booking-card-icon {
  width: 32px;
  height: 32px;
  fill: var(--drishti-accent-emerald);
}

.drishti-booking-card h3 {
  font-size: 1.15rem;
}

.drishti-booking-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drishti-booking-bullet-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9rem;
  color: var(--drishti-ink-secondary);
}

.drishti-booking-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--drishti-accent-emerald);
}

/* Form block */
.drishti-booking-form-card {
  background-color: var(--drishti-surface-card);
  border-radius: var(--drishti-radius);
  padding: 40px;
  box-shadow: var(--drishti-shadow-raised);
  align-self: start;
}

.drishti-booking-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.drishti-form-group {
  margin-bottom: 20px;
}

.drishti-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--drishti-ink-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.drishti-form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--drishti-radius);
  border: 1px solid var(--drishti-border-tint);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--drishti-canvas-bg);
  outline: none;
  transition: border-color 0.3s ease;
}

.drishti-form-input:focus {
  border-color: var(--drishti-accent-emerald);
}

.drishti-form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.drishti-form-checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 4px;
  accent-color: var(--drishti-accent-emerald);
}

.drishti-form-checkbox-wrapper label {
  font-size: 0.8rem;
  color: var(--drishti-ink-secondary);
  line-height: 1.4;
}

.drishti-contact-direct {
  margin-top: 32px;
  text-align: center;
  font-size: 0.9rem;
}

.drishti-contact-direct a {
  color: var(--drishti-accent-emerald);
  font-weight: bold;
  text-decoration: underline;
}

/* FAQ Accordion Section */
.drishti-faq-section {
  padding: var(--drishti-padding-box) 0;
  border-top: 1px solid var(--drishti-border-tint);
}

.drishti-faq-heading {
  text-align: center;
  margin-bottom: 50px;
}

.drishti-faq-heading h2 {
  font-size: 2rem;
}

/* Simple CSS scroll-animated presentation blocks */
@keyframes drishti-viewport-reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.drishti-reveal {
  animation: drishti-viewport-reveal 0.8s ease both;
  animation-timeline: view();
  animation-range: entry 10% entry 40%;
}

/* --- FOOTER --- */
.drishti-ground-footer {
  background-color: var(--drishti-ink-primary);
  color: #FFFFFF;
  padding: 60px 0 30px;
}

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

.drishti-footer-logo-panel .drishti-brand-logo {
  fill: #FFFFFF;
}

.drishti-footer-logo-panel .drishti-brand-text {
  color: #FFFFFF;
}

.drishti-footer-text {
  color: var(--drishti-ink-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.drishti-footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drishti-footer-menu a {
  color: var(--drishti-ink-muted);
  font-size: 0.9rem;
}

.drishti-footer-menu a:hover {
  color: var(--drishti-accent-sunglow);
}

.drishti-disclaimer-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.drishti-disclaimer-text {
  font-size: 0.8rem;
  color: var(--drishti-ink-muted);
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.drishti-copyright-block {
  font-size: 0.8rem;
  color: var(--drishti-ink-muted);
}

/* --- COOKIE CONSENT BOX --- */
.drishti-consent-capsule {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--drishti-ink-primary);
  color: #FFFFFF;
  padding: 20px 5%;
  z-index: 99999;
  display: none;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
}

.drishti-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.drishti-consent-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--drishti-border-tint);
}

.drishti-consent-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.drishti-consent-btn {
  padding: 10px 24px;
  border-radius: calc(var(--drishti-radius) - 4px);
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

#accept-cookie {
  background-color: var(--drishti-accent-sunglow);
  color: #FFFFFF;
}

#decline-cookie {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- THANK YOU / LEGAL SIMPLE PAGE LAYOUT --- */
.drishti-solitary-hero {
  padding: 120px 0;
  text-align: center;
  background-color: var(--drishti-accent-mint);
}

.drishti-solitary-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.drishti-solitary-hero p {
  font-size: 1.15rem;
  color: var(--drishti-ink-secondary);
}

.drishti-document-deck {
  padding: 80px 0;
}

.drishti-document-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--drishti-surface-card);
  padding: 50px;
  border-radius: var(--drishti-radius);
  box-shadow: var(--drishti-shadow-raised);
}

.drishti-document-box h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.drishti-document-box h3 {
  font-size: 1.25rem;
  margin: 30px 0 14px;
}

.drishti-document-box p {
  color: var(--drishti-ink-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* --- RESPONSIVE OPTIMIZATIONS --- */
@media (max-width: 991px) {
  .drishti-hero-split {
    grid-template-columns: 1fr;
  }
  
  .drishti-hero-copyholder {
    padding: 60px 5%;
  }
  
  .drishti-hero-scenics {
    height: 40vh;
  }
  
  .drishti-magazine-trio-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .drishti-bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .drishti-bio-visual {
    height: 400px;
  }
  
  .drishti-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .drishti-booking-split {
    grid-template-columns: 1fr;
  }
  
  .drishti-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation Hamburger */
  .drishti-menu-burger {
    display: flex;
    z-index: 1001;
  }
  
  .drishti-navigation-deck {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 80px);
    background-color: var(--drishti-canvas-bg);
    flex-direction: column;
    padding: 40px 30px;
    gap: 24px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    z-index: 1000;
  }
  
  .drishti-menu-toggle:checked ~ .drishti-navigation-deck {
    right: 0;
  }
  
  .drishti-menu-toggle:checked ~ .drishti-menu-burger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .drishti-menu-toggle:checked ~ .drishti-menu-burger span:nth-child(2) {
    opacity: 0;
  }
  
  .drishti-menu-toggle:checked ~ .drishti-menu-burger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .drishti-journey-timeline {
    flex-direction: column;
    gap: 40px;
  }
  
  .drishti-journey-timeline::before {
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    height: 100%;
    border-left: 2.5px dashed var(--drishti-accent-emerald);
    border-top: none;
  }
  
  .drishti-journey-node {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
  
  .drishti-journey-node-circle {
    margin: 0 20px 0 0;
    flex-shrink: 0;
  }
  
  .drishti-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .drishti-consent-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .drishti-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .drishti-consent-btn {
    flex: 1;
  }
}