/* ============================================
   Smartlib Website - Elegant & Professional
   Modern Typography with Minimal Clean Design
   ============================================ */

/* CSS Variables for Design System */
:root {
  /* Primary Colors - Enhanced Palette */
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #505050;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #151515;

  /* Semantic Colors */
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-light: var(--gray-400);
  --accent: var(--black);
  --border-color: rgba(0, 0, 0, 0.08);

  /* Backgrounds */
  --bg-primary: var(--white);
  --bg-secondary: var(--gray-50);
  --bg-elevated: #fcfcfc;

  /* Shadows - Subtle Depth */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-base: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Border Radius - Modern */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing - Enhanced Scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --spacing-4xl: 8rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

/* Fix scroll offset for anchor links */
section[id] {
  scroll-margin-top: 120px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-optical-sizing: auto;
}

/* Typography - Modern Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  font-optical-sizing: auto;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.625rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 400;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--gray-600);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.25rem 0;
  position: relative;
}

/* Left side navigation */
.nav-left {
  justify-self: start;
}

/* Center logo */
.logo-container {
  justify-self: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.logo img {
  height: 32px;
  margin-right: 0.5rem;
  /* Removed filter: drop-shadow */
}

/* Right side actions */
.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

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

.cta-button {
  background: var(--black);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border: 1.5px solid var(--black);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9375rem;
  display: inline-block;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: var(--white);
  color: var(--black);
  color: var(--black) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-xs);
}

.cta-button-secondary {
  background: var(--white);
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

.cta-button-secondary:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 14rem 0 10rem;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--gray-50) 100%);
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
}

.hero-logo {
  width: clamp(140px, 22vw, 240px);
  height: auto;
  margin-bottom: 2.5rem;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.06));
}

.hero h1 {
  margin-bottom: 2rem;
  color: var(--text-primary);
  line-height: 1.08;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: var(--spacing-4xl) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-header h2 {
  margin-bottom: 1.25rem;
}

.section-header p {
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-xs);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.5rem;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: var(--white);
  border-color: var(--gray-300);
  transform: scale(1.05);
}

.use-case-card h4 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.use-case-card h4 svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4rem;
  margin-top: 5rem;
}

.benefit-item {
  text-align: center;
  padding: 2.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: var(--transition-smooth);
}

.benefit-item:hover {
  transform: translateY(-4px);
}

.benefit-number {
  font-family: 'Sora', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.benefit-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   USE CASES SECTION
   ============================================ */
.use-cases {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-primary);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
}

.use-case-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-xs);
}

.use-case-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.use-case-card h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.use-case-card p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: var(--spacing-4xl) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--border-color);
}

.pricing-cards {
  text-align: center;
  padding: 3rem 0;
}

.pricing-cards p {
  font-size: 1.3rem;
  margin: 2.5rem 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--spacing-4xl) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--border-color);
}

.contact-form {
  max-width: 560px;
  margin: 4rem auto 0;
  padding: 3.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  transition: var(--transition-smooth);
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-control:focus {
  outline: none;
  border-color: var(--text-primary);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

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

.contact-form .cta-button {
  width: 100%;
  margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--gray-800);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-logo .logo span {
  color: var(--white) !important;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.65) !important;
}

.footer-links ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: var(--transition-base);
}

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

.copyright {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.copyright a {
  color: rgba(255, 255, 255, 0.65) !important;
  transition: var(--transition-base);
}

.copyright a:hover {
  color: var(--white) !important;
}

/* ============================================
   SUPPORT PAGE
   ============================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.support-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-xs);
}

.support-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.support-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.support-card h3 svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.support-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.support-card a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.support-card a:hover {
  color: var(--gray-600);
}

/* Service Standards Table */
.standards-content {
  max-width: 800px;
  margin: 0 auto;
}

.response-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9375rem;
}

.response-table th,
.response-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.response-table th {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--gray-50);
}

.response-table td {
  color: var(--text-secondary);
}

.note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* Getting Started Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  counter-reset: step-counter;
}

.step {
  position: relative;
  padding-left: 1rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--text-primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* FAQ List */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.faq-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ============================================
   PRIVACY POLICY & LEGAL PAGES
   ============================================ */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 0 4rem;
  /* Desktop: account for fixed header */
}

/* Mobile: reduce top padding since header may be different */
@media (max-width: 768px) {
  .policy-content {
    padding: 2rem 0;
  }
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.policy-content header {
  border-bottom: none !important;
  padding-bottom: 0;
  margin-bottom: 2rem;
  /* Reset global header styles */
  position: static;
  background: transparent !important;
  box-shadow: none;
  width: auto;
  z-index: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.policy-content .last-updated {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  display: block;
}

.policy-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.policy-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p,
.policy-content li {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-content a:hover {
  color: var(--gray-600);
}

.highlight {
  background: var(--gray-50);
  padding: 1.5rem;
  border-left: 4px solid var(--text-primary);
  margin: 2rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.contact-info {
  background: var(--gray-50);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  margin-top: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 10rem 0 6rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-buttons .cta-button {
    width: 100%;
  }

  .section-header {
    margin-bottom: 4rem;
  }

  .features,
  .benefits,
  .use-cases,
  .pricing,
  .contact {
    padding: var(--spacing-3xl) 0;
  }

  .benefits {
    min-height: auto;
  }

  .benefits-grid {
    gap: 3rem;
  }

  .contact-form {
    padding: 2rem;
    margin-top: 2.5rem;
  }

  nav {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .nav-left,
  .logo-container,
  .nav-right {
    justify-self: center;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Hide mobile menu container by default (desktop) */
.mobile-menu-container {
  display: none;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
  }

  /* Hide default nav elements on mobile */
  .nav-left,
  .nav-right {
    display: none;
  }

  /* Unified Mobile Menu Container */
  .mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 2rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.05);
  }

  .mobile-menu-container.active {
    right: 0;
  }

  .mobile-menu-content {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
    transition-delay: 0.1s;
  }

  .mobile-menu-container.active .mobile-menu-content {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .mobile-nav-links li {
    width: 100%;
  }

  .mobile-nav-links a {
    display: block;
    padding: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
  }

  .mobile-nav-links a:hover {
    background: var(--gray-50);
    color: var(--black);
  }

  .mobile-menu-content .cta-button {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.125rem;
  }

  /* Hamburger Animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Prevent scrolling when menu is open */
  body.mobile-menu-active {
    overflow: hidden;
  }
}



.hero h1 {
  font-size: 2.5rem;
}

.contact-form {
  padding: 1.5rem;
}

/* Cache bust 1763805490 */