/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Styles for the header */
  header {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  
  nav ul {
    display: flex;
  }
  
  nav li {
    list-style: none;
    margin-right: 1rem;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
  }
  
  nav a:hover {
    color: #ffd700;
  }
  
  /* Styles for the hero section */
  #hero {
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  #hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  
  #hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    background-color: #ffd700;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  
  .btn:hover {
    background-color: #333;
    color: #ffd700;
  }
  
  /* Styles for the about section */
  #about {
    background-color: #fff;
    padding: 3rem;
    text-align: center;
  }
  
  #about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  #about p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  /* Styles for the services section */
  #services {
    background-color: #f5f5f5;
    padding: 3rem;
    text-align: center;
  }
  
  #services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  #services ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  #services li {
    width: 30%;
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.3s ease-in-out;
  }
  
  #services li:hover {
    transform: translateY(-10px);
  }
  
  /* Styles for the contact section */
  #contact {
    background-color: #ffd700;
    padding: 3rem;
    text-align: center;
  }
  
  #contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
  }
  
  form label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 1
    form input[type="text"],
    form input[type="email"],
    form textarea {
      padding: 1rem;
      border-radius: 5px;
      border: none;
      margin-bottom: 1rem;
      font-size: 1rem; 
    }
    
    form input[type="submit"] {
      background-color: #333;
      color: #fff;
      padding: 1rem 2rem;
      border-radius: 5px;
      font-size: 1.2rem;
      text-decoration: none;
      transition: all 0.3s ease-in-out;
      border: none;
      cursor: pointer;
    }
    
    form input[type="submit"]:hover {
      background-color: #ffd700;
      color: #333;
    }
    
    /* Styles for the footer */
    footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 2rem;
      font-size: 1.2rem;
    }
    
    /* Media queries */
    @media only screen and (max-width: 768px) {
      nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
      }
    
      nav li {
        margin-right: 0;
        margin-bottom: 1rem;
      }
    
      #services li {
        width: 45%;
      }
    }
    
    @media only screen and (max-width: 576px) {
      #hero h1 {
        font-size: 2rem;
      }
    
      #hero p {
        font-size: 1rem;
      }
    
      #about h2 {
        font-size: 2rem;
      }
    
      #about p {
        font-size: 1rem;
      }
    
      #services h2 {
        font-size: 2rem;
      }
    
      #services li {
        width: 100%;
      }
    
      form input[type="text"],
      form input[type="email"],
      form textarea {
        font-size: 1rem;
      }
    
      form input[type="submit"] {
        font-size: 1rem;
      }
    }
      