<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Menu with Get Quote Button</title>
  <style>
    /* Base menu styling */
    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    .navbar {
      background: #fff;
      padding: 12px 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .navbar .menu {
      list-style: none;
      display: flex;
      align-items: center;
      margin: 0;
      padding: 0;
    }

    .navbar .menu li {
      margin: 0 15px;
    }

    .navbar .menu li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .navbar .menu li a:hover {
      color: #007bff;
    }

    /* Get Quote button */
    .navbar .menu .get-quote {
      margin-left: auto; /* Push to right */
    }

    .navbar .menu .get-quote a {
      background: #007bff;
      color: #fff !important;
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .navbar .menu .get-quote a:hover {
      background: #0056b3;
    }
  </style>
</head>
<body>
  <nav class="navbar">
    <ul class="menu">
      <li><a href="#">Home</a></li>
      <li><a href="#">About</a></li>
      <li><a href="#">Services</a></li>
      <li><a href="#">Contact</a></li>

      <!-- Get Quote Button -->
      <li class="get-quote"><a href="/get-quote">Get Quote</a></li>
    </ul>
  </nav>
</body>
</html>

