<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>Your Name | Services</title>

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <style>

    body {

      margin: 0;

      font-family: Arial, sans-serif;

      background: #0d0d0d;

      color: #fff;

    }

    header {

      padding: 20px 40px;

      display: flex;

      justify-content: space-between;

      align-items: center;

      background: #111;

    }

    header h1 {

      font-size: 20px;

    }

    nav a {

      color: #aaa;

      text-decoration: none;

      margin-left: 20px;

    }

    nav a:hover {

      color: #fff;

    }

    .hero {

      height: 90vh;

      display: flex;

      flex-direction: column;

      justify-content: center;

      padding: 0 10%;

      background: linear-gradient(to right, #000, #1a1a1a);

    }

    .hero h2 {

      font-size: 48px;

      margin-bottom: 10px;

    }

    .hero p {

      font-size: 18px;

      color: #bbb;

      max-width: 500px;

    }

    .btn {

      margin-top: 20px;

      padding: 12px 25px;

      background: #fff;

      color: #000;

      border: none;

      cursor: pointer;

      font-weight: bold;

    }

    section {

      padding: 80px 10%;

    }

    .services {

      display: grid;

      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

      gap: 30px;

    }

    .card {

      background: #1a1a1a;

      padding: 20px;

      border-radius: 10px;

      transition: 0.3s;

    }

    .card:hover {

      background: #222;

      transform: translateY(-5px);

    }

    .card h3 {

      margin-bottom: 10px;

    }

    footer {

      text-align: center;

      padding: 30px;

      background: #111;

      color: #777;

    }

  </style>

</head>

<body>

<header>

  <h1>Your Name</h1>

  <nav>

    <a href="#services">Services</a>

    <a href="#about">About</a>

    <a href="#contact">Contact</a>

  </nav>

</header>

<div class="hero">

  <h2>Reliable. Versatile. Results.</h2>

  <p>

    Handyman services and professional sales support.

    I help individuals and businesses get things done — efficiently and effectively.

  </p>

  <button class="btn" onclick="document.getElementById('contact').scrollIntoView()">Get In Touch</button>

</div>

<section id="services">

  <h2>My Services</h2>

  <div class="services">

    <div class="card">

      <h3>Handyman Work</h3>

      <p>

        Repairs, installations, and general maintenance.

        Fast, reliable, and detail-focused.

      </p>

    </div>

    <div class="card">

      <h3>Sales Services</h3>

      <p>

        I can learn and sell almost any product with time.

        I help businesses increase conversions and reach.

      </p>

    </div>

    <div class="card">

      <h3>Business Support</h3>

      <p>

        Fresh perspective for companies that need improvement, restructuring, or new ideas.

      </p>

    </div>

  </div>

</section>

<section id="about">

  <h2>About Me</h2>

  <p>

    I’m a versatile professional offering both hands-on handyman services

    and strategic sales support. Whether it's fixing something physical or improving how a product sells,

    I bring adaptability, fast learning, and results-driven focus.

  </p>

</section>

<section id="contact">

  <h2>Contact</h2>

  <p>Email: your@email.com</p>

  <p>Phone: (123) 456-7890</p>

</section>

<footer>

  <p>© 2026 Your Name. All rights reserved.</p>

</footer>

</body>

</html>