<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Valet Trash Service</title>
  <style>
    /* Global styles */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    
    header {
      background-color: #AEC3B4;
      
      padding: 30px;
      text-align: center;
    }

    nav {
      background-color: #AEC3B4;
      padding: 20px;
    }

    nav ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      text-align: center;
    }

    nav ul li {
      display: inline;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      padding: 10px;
    }

    section {
      padding: 30px;
    }

    div.about {
      margin-right: 150px;
      margin-left: 150px;
    }

    h2{
      text-align: center;
    }

    footer {
      background-color:  #AEC3B4;
      
      padding: 10px;
      text-align: center;
    }

    /* Custom styles */
    h1, h2 {
      color: #333;
    }

    #about {
      background-color: #f4f4f4;
    }

    #services ul {
      list-style-type: disc;
      padding-left: 20px;
      margin-left: 38%;
    }
    #contact p {
      text-align: center;
    }
    #contact ul {
      list-style-type: none;
      padding-left: 0;
      margin-left: 38%;
    }

    #contact ul li {
      margin-bottom: 10px;

    }
