* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    padding-top: 80px;
  }
  
  /* Sticky Header */
  .sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #0a0a0a;
    border-bottom: 1px solid rgba(245, 245, 220, 0.1);
    z-index: 1000;
    padding: 15px 0;
  }
  
  .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header-logo {
    max-width: 140px;
    height: auto;
  }
  
  .header-nav {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
  }
  
  .header-nav a {
    color: #f5f5dc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
  }
  
  .header-nav a:hover {
    opacity: 0.7;
  }
  
  .header-cta {
    padding: 10px 24px;
    background-color: #f5f5dc;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .header-cta:hover {
    background-color: #fff;
    transform: translateY(-1px);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Dark Sections */
  .dark-section {
    background-color: #0a0a0a;
    color: #f5f5dc;
    padding: 80px 20px;
  }
  
  /* Light Sections */
  .light-section {
    background-color: #f5f5dc;
    color: #0a0a0a;
    padding: 80px 20px;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo {
    max-width: 250px;
    margin-bottom: 60px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
  }
  
  /* Background Decorative Images */
  .section-with-bg-image {
    position: relative;
    overflow: hidden;
  }
  
  .bg-image {
    position: absolute;
    width: 350px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
  }
  
  .bg-image-left {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .bg-image-right {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .section-with-bg-image .container {
    position: relative;
    z-index: 1;
  }
  
  /* Typography */
  h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
  }
  
  p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
  }
  
  .emphasis-text {
    font-size: 1.25rem;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  /* Features Grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 40px;
  }
  
  .feature {
    text-align: center;
  }
  
  .feature h3 {
    font-size: 1.3rem;
    margin-top: 0;
  }
  
  .feature p {
    font-size: 1.05rem;
    opacity: 0.9;
  }
  
  /* Services List */
  .services-list {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .service-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  }
  
  .service-item:last-child {
    border-bottom: none;
  }
  
  .service-item h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: #0a0a0a;
  }
  
  .service-item p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 0;
  }
  
  /* Benefits List */
  .benefits-list {
    list-style: none;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .benefits-list li {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
  }
  
  .benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f5f5dc;
    font-weight: bold;
  }
  
  .light-section .benefits-list li::before {
    color: #0a0a0a;
  }
  
  /* CTA Buttons */
  .cta-button-inline {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 30px;
    font-family: inherit;
    text-align: center;
  }
  
  .container > .cta-button-inline {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  
  .dark-section .cta-button-inline {
    color: #0a0a0a;
    background-color: #f5f5dc;
  }
  
  .dark-section .cta-button-inline:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 245, 220, 0.3);
  }
  
  .light-section .cta-button-inline {
    color: #f5f5dc;
    background-color: #0a0a0a;
  }
  
  .light-section .cta-button-inline:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 10, 10, 0.3);
  }
  
  /* CTA Section */
  .cta-section {
    text-align: center;
  }
  
  .waitlist-form {
    max-width: 500px;
    margin: 50px auto 0;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
    border: 2px solid #0a0a0a;
    background-color: #fff;
    color: #0a0a0a;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.1);
  }
  
  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    cursor: pointer;
  }
  
  .cta-button {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f5f5dc;
    background-color: #0a0a0a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 10px;
  }
  
  .cta-button:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 10, 10, 0.3);
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 60px 20px;
  }
  
  .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    opacity: 0.8;
  }
  
  .footer p {
    font-size: 0.95rem;
    opacity: 0.7;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    body {
      padding-top: 70px;
    }
  
    .header-container {
      padding: 0 20px;
    }
  
    .header-logo {
      max-width: 100px;
    }
  
    .header-nav {
      gap: 20px;
    }
  
    .header-nav a {
      font-size: 0.9rem;
    }
  
    .header-cta {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.1rem;
    }
  
    h2 {
      font-size: 2rem;
    }
  
    p {
      font-size: 1.05rem;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .dark-section,
    .light-section {
      padding: 50px 15px;
    }
  
    .hero {
      padding: 70px 15px;
      min-height: auto;
    }
  
    .logo {
      margin-bottom: 50px;
    }
  
    .bg-image {
      width: 320px;
      opacity: 0.15;
    }
  
    .bg-image-left {
      left: -20px;
    }
  
    .bg-image-right {
      right: -20px;
    }
  }
  
  @media (max-width: 480px) {
    body {
      padding-top: 70px;
    }
  
    .header-nav {
      display: none;
    }
  
    .header-logo {
      max-width: 90px;
    }
  
    .dark-section,
    .light-section {
      padding: 50px 12px;
    }
  
    .hero {
      padding: 60px 12px;
    }
  
    .hero h1 {
      font-size: 1.9rem;
      line-height: 1.3;
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  
    .logo {
      max-width: 200px;
      margin-bottom: 40px;
    }
  
    .form-group input,
    .form-group select {
      font-size: 1rem;
      padding: 14px 16px;
    }
  
    .cta-button {
      font-size: 1.1rem;
      padding: 16px 30px;
    }
  
    .cta-button-inline {
      font-size: 1rem;
      padding: 14px 30px;
    }
  
    .bg-image {
      width: 280px;
      opacity: 0.15;
    }
  
    .bg-image-left {
      left: 50%;
      transform: translate(-50%, -50%);
    }
  
    .bg-image-right {
      right: 50%;
      transform: translate(50%, -50%);
    }
  }
  
  /* Visionabile Form Widget Centering and Font Overrides */
  .form-widget-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: 20px auto;
  }
  
  .support-widget,
  .contact-form-container {
    margin: 0 auto !important;
    display: block !important;
  }
  
  .form-widget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
  }
  
  .form-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
  }
  
  .form-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 1rem !important;
  }
  
  .vw-form-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
  }
  
  .form-input,
  .form-select {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 1rem !important;
  }
  
  .submit-btn,
  .phone-call-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
  }
  
  .vw-terms-label,
  .vw-terms-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 0.9rem !important;
  }
  
  /* Mobile font adjustments */
  @media (max-width: 480px) {
    .form-title {
      font-size: 1.3rem !important;
    }
    
    .form-subtitle {
      font-size: 0.95rem !important;
    }
  }
  