body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .navbar nav a {
    margin-left: 20px;
    font-weight: 500;
  }
  
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    background: #f5f7fa;
    flex-wrap: wrap;
  }
  
  .hero-text {
    flex: 1;
    max-width: 500px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .btn-primary {
    background: #8744B5;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
  }
  
  .hero-image img {
    width: 300px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .features {
    padding: 60px 40px;
    background: #fff;
    text-align: center;
  }
  
  .features h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .feature-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .feature {
    max-width: 300px;
  }
  
  .feature h3 {
    margin-bottom: 10px;
  }
  
  .cta {
    padding: 60px 40px;
    background: #8744B5;
    color: #fff;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background: #f0f0f0;
  }
  