@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN TOKENS & SYSTEM VARIABLES --- */
:root {
  /* Color Palette (Referenced from SVGs) */
  --color-primary: #6B5AED;          /* Brand Purple */
  --color-primary-hover: #5848db;
  --color-primary-light: rgba(107, 90, 237, 0.08);
  --color-secondary: #00E5A3;        /* Vibrant Teal */
  --color-secondary-hover: #00c48b;
  --color-secondary-light: rgba(0, 229, 163, 0.1);
  --color-dark: #2D323E;             /* Deep Slate/Charcoal from Mockup Footer */
  --color-dark-bg: #1A1C23;          /* Dark Body background */
  --color-light-bg: #FCF8FF;         /* Theme Light Background */
  --color-light-accent: #F6F1FE;     /* Light Purple Accent */
  --color-white: #FFFFFF;
  --color-border: #E2E8F0;
  
  /* Text Colors */
  --text-main: #1C1B23;
  --text-muted: #5C5B66;
  --text-light: #FFFFFF;
  --text-light-muted: #A0AEC0;

  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Layout and Spacing */
  --max-width: 1280px;
  --header-height: 72px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(107, 90, 237, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* --- RESET --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: #F3F4F6; /* Desktop preview background wrapper */
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- WEBSITE WRAPPER --- */
.site-wrapper {
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-white);
  box-shadow: 0 0 40px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

/* --- UNIFIED HEADER (MATCHES MOCKUP EXACTLY: LOGO LEFT, MENU CENTER, ACTIONS RIGHT) --- */
.header {
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 66px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 45px;
  width: auto;
  transition: var(--transition-normal);
}

.header-logo:hover {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-left: 20px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-login {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition-fast);
}

.btn-login:hover {
  color: var(--color-primary);
}

.btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-secondary); /* #00E5A3 */
  color: var(--text-main);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-signup:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-1px);
}

/* --- DIRECT SVG BODY CROP BOX --- */
.page-body-wrapper {
  position: relative;
  width: 100%;
  margin-top: var(--header-height);
}

.crop-box {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--color-white);
}

.crop-box img {
  width: 100%;
  display: block;
  margin-top: -72px; /* Uniformly shift up to hide original header */
  pointer-events: none;
}

/* Per-page fine-tuning: pull SVG content up further to reduce excess section top whitespace */
.crop-shift-home img    { margin-top: -150px; }
.crop-shift-features img { margin-top: -90px; }
.crop-shift-pricing img  { margin-top: -100px; }

/* --- INTERACTIVE HOTSPOTS --- */
.hotspot {
  position: absolute;
  cursor: pointer;
  background: rgba(0, 0, 0, 0); /* Invisible */
  transition: background var(--transition-fast);
  border-radius: var(--border-radius-sm);
  z-index: 10;
}

.hotspot:hover {
  background: rgba(107, 90, 237, 0.04);
  outline: 1px dashed rgba(107, 90, 237, 0.2);
}

/* --- PRICING PAGE EXTRAS --- */
.pricing-switch-wrapper {
  position: absolute;
  top: 90px;
  left: 540px;
  width: 204px;
  height: 32px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-checkbox {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 32;
}

.price-text-overlay {
  position: absolute;
  background-color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--text-main);
  z-index: 15;
  display: flex;
  align-items: baseline;
  pointer-events: none;
  font-feature-settings: "tnum";
}

.price-text-overlay span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

/* --- HELP CENTER INTERACTIVE LAYOUT --- */
.help-search-wrapper {
  position: absolute;
  top: 221px;
  left: 354px;
  width: 576px;
  height: 59px;
  z-index: 25;
  display: flex;
  align-items: center;
}

.help-search-overlay-input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--text-main);
  padding: 0 20px;
  font-family: var(--font-body);
  font-weight: 500;
}

/* Two-column layout matching the mockup style */
.help-main-layout {
  display: flex;
  gap: 60px;
  padding: 60px 66px;
  background-color: #F8F9FA; /* Light grey backdrop */
  border-top: 1px solid var(--color-border);
}

/* Left sidebar */
.help-sidebar {
  width: 240px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.help-sidebar-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-left: 16px;
}

.help-cat-button {
  background: transparent;
  border: none;
  text-align: left;
  padding: 14px 20px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-cat-button i {
  font-size: 16px;
  color: var(--text-muted);
}

.help-cat-button:hover {
  color: var(--color-primary);
  background-color: rgba(107, 90, 237, 0.04);
}

.help-cat-button.active {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.help-cat-button.active i {
  color: var(--color-primary);
}

/* Right FAQ content column */
.help-content-column {
  flex-grow: 1;
}

.help-faq-header {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.help-faq-heading {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
}

.help-results-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Accordion elements styled exactly like mockup */
.help-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-normal);
}

.accordion-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-icon {
  font-size: 16px;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg); /* Swaps the chevron direct */
}

.accordion-item.active .accordion-content {
  max-height: 250px;
  padding-bottom: 20px;
}

.help-no-results {
  text-align: center;
  color: var(--text-muted);
  padding: 60px 0;
  display: none;
}

.help-no-results i {
  font-size: 40px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

/* Contact Support box */
.contact-banner {
  background-color: var(--color-light-accent);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 12px;
}

.contact-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 8px;
}

.btn-large:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

/* --- UNIFIED FOOTER (MATCHES SVG FOOTER EXACTLY AS IN IMAGE.PNG) --- */
.footer {
  background-color: #E5E0ED;
  color: #1C1B23;
  padding: 60px 66px;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 0;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 320px;
}

.footer-lock-icon {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #1C1B23;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: #474554;
  line-height: 1.5;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #523ED3;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #474554;
  font-size: 14px;
  font-weight: 500;
}

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

.footer-safety-text {
  font-size: 14px;
  color: #474554;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-safety-icons {
  display: flex;
  gap: 16px;
  color: #1C1B23;
  font-size: 20px;
}

/* --- TERMS OF SERVICE & EULA PAGE STYLES --- */
.terms-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #4f3cc9 100%);
  position: relative;
  padding: 80px 66px;
  color: var(--color-white);
  overflow: hidden;
  margin-top: var(--header-height);
}

.terms-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.terms-hero h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.terms-meta {
  font-size: 15px;
  opacity: 0.85;
  font-weight: 500;
}

/* Background blob decorations for premium look */
.terms-hero::before,
.terms-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.terms-hero::before {
  width: 300px;
  height: 300px;
  background-color: var(--color-secondary); /* teal */
  opacity: 0.15;
  top: -100px;
  right: -50px;
}

.terms-hero::after {
  width: 200px;
  height: 200px;
  background-color: var(--color-white);
  opacity: 0.1;
  bottom: -50px;
  right: 200px;
}

.terms-main-layout {
  display: flex;
  gap: 50px;
  padding: 60px 66px;
  background-color: #F8F9FA;
  border-top: 1px solid var(--color-border);
}

.terms-sidebar {
  width: 280px;
  min-width: 280px;
  position: sticky;
  top: 100px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.terms-toc-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-left: 12px;
}

.terms-toc {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}

.terms-toc-link {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-left: 3px solid transparent;
  transition: var(--transition-fast);
}

.terms-toc-link:hover {
  color: var(--color-primary);
  border-left-color: var(--color-primary-light);
  background-color: rgba(107, 90, 237, 0.03);
}

.terms-toc-link.active {
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  background-color: var(--color-primary-light);
}

.terms-content {
  flex-grow: 1;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  max-width: 820px;
}

.terms-section {
  margin-bottom: 40px;
  scroll-margin-top: 100px; /* offset for sticky header */
}

.terms-section:last-child {
  margin-bottom: 0;
}

.terms-section h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 8px;
}

.terms-section h2 span {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
}

.terms-section p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.terms-section ul {
  list-style: none;
  margin-left: 20px;
  margin-bottom: 16px;
}

.terms-section ul li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.terms-section ul li::before {
  content: "•";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Callout Box Styling */
.callout-box {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--border-radius-sm);
  margin: 24px 0;
  align-items: flex-start;
}

.callout-box i {
  font-size: 20px;
  margin-top: 2px;
}

.callout-box-content h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.callout-box-content p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.callout-warning {
  background-color: #FFF5F5;
  border-left: 4px solid #FEB2B2;
  color: #9B2C2C;
}

.callout-warning i {
  color: #E53E3E;
}

.callout-warning .callout-box-content h4 {
  color: #9B2C2C;
}

.callout-warning .callout-box-content p {
  color: #C53030;
}

.callout-info {
  background-color: #EBF8FF;
  border-left: 4px solid #90CDF4;
  color: #2B6CB0;
}

.callout-info i {
  color: #3182CE;
}

.callout-info .callout-box-content h4 {
  color: #2B6CB0;
}

.callout-info .callout-box-content p {
  color: #2B6CB0;
}

/* Sidebar Promo card */
.sidebar-promo {
  background: var(--color-light-accent);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(107, 90, 237, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.sidebar-promo:hover {
  transform: translateY(-2px);
}

.promo-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.sidebar-promo h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.sidebar-promo p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-sidebar-promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-primary);
  color: var(--color-white);
  transition: var(--transition-normal);
}

.btn-sidebar-promo:hover {
  background-color: var(--color-primary-hover);
}
/* --- NEW HTML LAYOUT UTILITIES --- */
.container-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

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

/* Stripe Payment Button */
.btn-stripe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00d68f; /* Vibrant Stripe Green */
  color: #1a1a1a;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: 100px;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 214, 143, 0.3);
}

.btn-stripe:hover {
  background-color: #00bf7f;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 214, 143, 0.4);
}

.stripe-subtitle {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 500;
}
/* --- HOMEPAGE & GENERAL SECTIONS --- */
.hero-section {
  background: linear-gradient(rgba(28, 27, 35, 0.85), rgba(28, 27, 35, 0.85)), url('Images/Promotional Images/01.jpeg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  background: linear-gradient(to right, #fff, #b8a9f8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  color: #A0AEC0;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.hero-image-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-highlight {
  background: #FCF8FF;
  padding: 100px 20px;
  text-align: center;
}

.security-section {
  background: #fff;
  padding: 100px 20px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #4f3cc9 100%);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.cta-banner .section-title {
  color: #fff;
}

.cta-banner .section-subtitle {
  color: rgba(255,255,255,0.8);
}

/* --- RESPONSIVE / MOBILE STYLES --- */
@media (max-width: 1024px) {
  /* Smaller Header Adjustments */
  .nav-container {
    padding: 0 30px;
  }
  .nav-menu {
    gap: 20px;
  }
  .footer-grid {
    gap: 40px;
  }
  .help-main-layout,
  .terms-main-layout {
    gap: 30px;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  /* Header & Navigation Wrapping */
  .header {
    height: auto;
    padding: 15px 0;
  }
  .nav-container {
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 15px;
  }
  .logo-container {
    flex: 1 1 40%;
  }
  .nav-actions {
    flex: 1 1 40%;
    justify-content: flex-end;
  }
  .nav-menu {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .nav-menu::-webkit-scrollbar {
    display: none;
  }
  .page-body-wrapper {
    margin-top: 110px !important;
  }

  /* Grid Stack Overrides */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 40px !important;
  }
  
  /* Footer Override */
  .footer {
    padding: 40px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Layout Spacing Adjustments */
  .container-body {
    padding: 40px 20px !important;
  }
  .hero-section {
    padding: 80px 20px 60px;
  }
  .feature-highlight,
  .security-section,
  .cta-banner,
  .pricing-header {
    padding: 60px 20px !important;
  }
  .terms-hero {
    padding: 60px 20px;
  }
  
  /* Typography Adjustments */
  .hero-title {
    font-size: 38px;
  }
  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .section-title {
    font-size: 32px !important;
  }
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 30px !important;
  }

  /* Help & Terms Layout Override */
  .help-main-layout,
  .terms-main-layout {
    flex-direction: column;
    padding: 40px 20px;
  }
  .help-sidebar,
  .terms-sidebar {
    width: 100%;
    min-width: auto;
    position: static;
  }
  .help-hero-section h1 {
    font-size: 42px !important;
  }
  .help-hero-section p {
    font-size: 16px !important;
  }

  /* Pricing Cards adjustments */
  .pricing-cards {
    flex-direction: column;
    gap: 40px;
  }
  .pricing-card {
    max-width: 100%;
  }

  /* Feature Grid Adjustments */
  .feature-card {
    padding: 30px 20px !important;
  }
}
