  .wm-marketing {
    font-family: Arial, sans-serif;
  }

  /* Header */
  .wm-marketing header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #ddd;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
  }

  .wm-marketing .nav {
    display: flex;
    gap: 20px;
  }

  .wm-marketing .nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
  }

  /* Sections */
  .wm-marketing section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  /* Hero */
  .wm-marketing .hero {
    text-align: center;
    padding: 120px 20px;
  }

  .wm-marketing .hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .wm-marketing .hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
  }

  .wm-marketing .cta {
    padding: 12px 24px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
  }

  /* Features */
  .wm-marketing .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .wm-marketing .card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 6px;
  }

  /* Footer */
  .wm-marketing footer {
    border-top: 1px solid #ddd;
    padding: 40px 20px;
    text-align: center;
    color: #666;
  }