body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
    color: #111;
  }
  
  h2 {
    font-size: 36px;
  }

  section {
    padding: 80px 20px;
    text-align: center;
  }
  
  .content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    
  }
  
  .hero {
    position: relative;
    background: #f5f5f5;
    padding: 200px 20px 200px;
    background: url(hero-wide.jpg);
    background-size: cover;
    background-position: 100% 100%;
    overflow: hidden;
  }

  .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* background: linear-gradient(-125deg, rgba(212, 162, 241, 0.5), rgba(207, 124, 255, 0.75)); */
    background: linear-gradient(-125deg, rgb(162 201 241 / 50%), rgb(124 202 255 / 75%));
    z-index: 0;
    /* mix-blend-mode: screen; */
  }
  
  .hero h1 {
    font-size: 2.75rem;
    line-height: 1.23;
    margin-bottom: 20px;
    color: #000000;
  }

  .hero p.subline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333;
  }
  
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta-buttons button {
    padding: 12px 24px;
    margin: 5px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .cta-buttons button:first-child {
    background: #111;
    color: #fff;
  }
  
  .cta-buttons .outline {
    background: transparent;
    border: 2px solid #111;
    color: #111;
  }
  
  .cta-buttons .outline:hover {
    background: #111;
    color: #fff;
  }
  
  .dark {
    background: #111;
    color: #f5f5f5;
  }
  
  ul, ol {
    text-align: left;
    display: inline-block;
    margin-top: 20px;
    font-size: 1.1rem;
  }
  
  ul li, ol li {
    margin-bottom: 10px;
  }
  
  .features ul li strong {
    display: inline-block;
    min-width: 200px;
  }
  
  .pricing table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
  }
  
  .pricing th, .pricing td {
    padding: 12px;
    border: 1px solid #ccc;
    text-align: left;
  }
  
  footer {
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f5;
    font-size: 0.9rem;
    color: #555;
  }
  
  .impact {
    background: #f8f8f8;
    color: #111;
  }
  
  .impact ul {
    list-style: none;
    padding-left: 0;
  }
  
  .impact li {
    margin: 30px 0;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .features-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
    text-align: left;
  }
  
  .features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .features-list li strong {
    display: inline-block;
    min-width: 160px;
    margin-right: 10px;
    font-weight: 600;
  }

  .preview {
    padding: 60px 20px;
    background: #f9f9f9;
    color: #111;
    text-align: center;
    overflow: hidden;
  }
  
  .preview h2 {
    margin-bottom: 10px;
  }
  
  .preview p {
    max-width: 600px;
    margin: 0 auto 40px;
  }
  
  .preview-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .preview-card {
    max-width: 300px;
    text-align: left;
  }
  
  .preview-card img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 15px;
  }
  
  .preview-card h3 {
    margin: 0 0 8px;
  }
  
  .preview-card p {
    font-size: 15px;
    line-height: 1.4;
    color: #444;
  }
  
  .demo-link {
    text-align: center;
    margin: 40px auto;
  }
  
  .demo-link .outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #2979FF;
    color: #2979FF;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .demo-link .outline:hover {
    background-color: #2979FF;
    color: white;
  }
  
  
  @media (max-width: 600px) {

    .hero {
      padding: 20px 20px 100px;
    }

    .hero h1 {
      font-size: 2rem;
    }
  
    .cta-buttons button {
      width: 100%;
      margin: 10px 0;
    }

      
    h2 {
      font-size: 28px;
    }

    .features-list li strong {
      min-width: 100px;
    }
    
  }