 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #111;
      background-color: #fff;
      line-height: 1.6;
    }

    header {
      width: 100%;
      padding: 1rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eee;
    }

    .logo {
      font-weight: 700;
      font-size: 1.4rem;
      letter-spacing: -0.5px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    nav a {
      text-decoration: none;
      color: #111;
      font-weight: 500;
      transition: color 0.2s;
    }

    nav a:hover {
      color: #007bff;
    }

    .cta-btn {
      background-color: #111;
      color: #fff;
      padding: 0.6rem 1.2rem;
      border-radius: 0.5rem;
      font-weight: 500;
      text-decoration: none;
      transition: background-color 0.2s;
    }

    .cta-btn:hover {
      background-color: #333;
    }

    .hero {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6rem 4rem;
      max-width: 1200px;
      margin: 0 auto;
      gap: 3rem;
    }

    .hero-text {
      flex: 1;
    }

    .hero-text h2 {
      font-size: 0.9rem;
      letter-spacing: 1px;
      color: #666;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .hero-text h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      max-width: 520px;
    }

    .hero-text p {
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 2rem;
      max-width: 480px;
    }

    .hero-text a {
      background-color: #111;
      color: #fff;
      text-decoration: none;
      padding: 0.8rem 1.6rem;
      border-radius: 0.5rem;
      font-weight: 500;
      transition: background-color 0.2s;
    }

    .hero-text a:hover {
      background-color: #333;
    }

    .hero-image {
      flex: 1;
    }

    .hero-image img {
      width: 100%;
      border-radius: 1rem;
      object-fit: cover;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    @media (max-width: 900px) {
      .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem;
      }

      .hero-text h1 {
        font-size: 2.2rem;
      }
    }