/* Global styles */
* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  body {
    background-color: #f8f8f8;
    line-height: 1.5;
  }
  
  h1, h2 {
    color: #333;
  }
  
  ul {
    list-style: none;
  }
  
  a {
    color: #333;
    text-decoration: none;
  }
  
  .btn {
    background-color: #333;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
  }
  
  /* Header styles */
  header {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    padding: 20px;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav li {
    margin-right: 20px;
  }
  
  .hero {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  /* Main styles */
  main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  section {
    margin-bottom: 40px;
  }
  
  section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  section ul li:before {
    content: "\2022";
    margin-right: 10px;
  }
  
  section form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
  }
  
  section label {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  section input, section textarea {
    background-color: #f8f8f8;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 20px;
    padding: 10px;
  }
  
  section input:focus, section textarea:focus {
    outline: none;
    box-shadow: 0 0 3px #333;
  }
  
  section button[type="submit"] {
    background-color: #333;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  
  section button[type="submit"]:hover {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
  }
  
  /* Footer styles */
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  footer p {
    font-size: 16px;
  }
  <!DOCTYPE html>
  <html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Contracting Company</title>
    <link rel="stylesheet" href="styles.css">
  </head>
  <body>
    <!-- Header -->
    <header>
      <nav>
        <a href="#" class="logo">Contracting Company</a>
        <ul>
          <li><a href="#">Services</a></li>
          <li><a href="#">Projects</a></li>
          <li><a href="#">About</a></li>
          <li><a href="#">Contact</a></li>
        </ul>
      </nav>
    </header>
  
    <!-- Hero section -->
    <section class="hero">
      <h1>Welcome to Contracting Company</h1>
      <p>We provide top-quality contracting services to businesses and homeowners. Our team of experts has years of experience in construction, renovation, and remodeling. Contact us today to learn how we can help you achieve your goals.</p>
      <a href="#" class="btn">Learn More</a>
    </section>
  
    <!-- Services section -->
    <section>
      <h2>Our Services</h2>
      <ul>
        <li>Construction</li>
        <li>Renovation</li>
        <li>Remodeling</li>
        <li>Design</li>
      </ul>
    </section>
  
    <!-- Projects section -->
    <section>
      <h2>Recent Projects</h2>
      <ul>
        <li><a href="#">Project 1</a></li>
        <li><a href="#">Project 2</a></li>
        <li><a href="#">Project 3</a></li>
        <li><a href="#">Project 4</a></li>
      </ul>
    </section>
  
    <!-- About section -->
    <section>
      <h2>About Us</h2>
      <p>Contracting Company is a leading provider of construction and renovation services. With a team of skilled professionals and a commitment to quality, we have built a reputation for excellence in the industry.</p>
      <p>Contact us today to learn more about our services and how we can help you with your next project.</p>
    </section>
  
    <!-- Contact section -->
    <section>
      <h2>Contact Us</h2>
      <form>
        <label for="name">Name:</label>
        <input type="text" id="name" name="name" required>
  
        <label for="email">Email:</label>
        <input type="email" id="email" name="email" required>
  
        <label for="message">Message:</label>
        <textarea id="message" name="message" required></textarea>
  
        <button type="submit">Submit</button>
      </form>
    </section>
  
    <!-- Footer -->
    <footer>
      <p>&copy; 2023 Contracting Company. All rights reserved.</p>
    </footer>
  </body>
  </html>
    