   /* Global Styles */
    body {
      font-family: 'Inter', sans-serif;
      background: #f9f8f6;
      color: #333;
      line-height: 1.6;
    }
    h1, h2, h3 {
      font-weight: 700;
    }
    .btn-primary {
      background: linear-gradient(90deg, #FF8C42, #FF3D00);
      border: none;
    }
    .btn-primary:hover {
      opacity: 0.9;
    }
    .section {
      padding: 80px 0;
    }
    .section-subtle {
      background: #f2f2f2;
    }
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      flex-direction: column;
      background: linear-gradient(180deg, #fff7f0 0%, #f9f8f6 100%);
    }
    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 20px;
    }
    .hero p {
      font-size: 1.25rem;
      color: #555;
      max-width: 500px;
      margin: auto;
    }
    .features img {
      max-width: 100%;
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    .feature-block {
      text-align: center;
      padding: 20px;
    }
    .feature-block h3 {
      margin-top: 15px;
      margin-bottom: 10px;
      font-size: 1.25rem;
    }
    .cta-section {
      text-align: center;
      background: #fff7f0;
      padding: 60px 20px;
      margin-top: 90px;
    }
    footer {
      text-align: center;
      padding: 40px 20px;
      font-size: 0.9rem;
      color: #777;
    }