body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: #333;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background-color: #ffffff;
    position: fixed;
/*     height: 10em; */
    width: 100%;
    top: 0;
  }
  
  .logoImg {
    width: 10em;
    height: auto;
    border-radius: 50%;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  nav li {
    margin: 1em;
    font-size: large;
  }
  
  nav a {
    text-decoration: none;
    color: black;
    padding: 1em;
  }
  
  nav a:hover {
    border-bottom: 2px solid orange;
  }

/*   Hero section */
  
  #home {
    padding-top: 10em;
    text-align: center;
  }

  .headline {
    font-size: xx-large;
    font-weight: bolder;
  }
  
  .backgroundImg {
    border-radius: 0.5em;
    position: center;
  }

  .backgroundVideo {
    display: none; 
}


  button {
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }
  

  section {
    padding: 50px;
    background-color: white;
    margin-top: 5em; 
  }
  
/* Services */


#services {
    text-align: center; 
    padding: 20px;
  }

.packages {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  align-items: center;
}

#services h2 {
  margin-bottom: 20px;
}

.package {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  margin: 0 10px; 
}

.package h2 {
  font-size: 1.5em;
}

.package p {
  margin-bottom: 10px;
}

.cta-button {
  display: flex;
  justify-content: center;
}

.package a {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.package a:hover {
  background-color: #ff5500;
}

.price {
  font-weight: bold;
}

/* About */
  
  #about {
    background-color: #f9f9f9;
    padding: 50px;
  }
  
  #about h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  #about p {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: center;
  }
  
 /*  Testimonials */

  #testimonials {
    background-color: #eaeaea;
    padding: 50px;
  }
  
  #testimonials h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  blockquote {
    font-size: 1.2em;
    border-left: 5px solid #ff6600;
    padding-left: 20px;
    margin-bottom: 20px;
  }

/*   Contact */

  #contact {
    background-color: #f5f5f5;
    padding: 50px;
  }
  
  #contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  #contact p {
    font-size: 1.2em;
    line-height: 1.6;
  }
  
 
  form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }
  
  label {
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
    color: #333; 
  }
  
  input, textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

/*   Footer */
footer {
    background-color: #f5f5f5;
    text-align: center;
    padding: 20px;
  }
  
  .social-icons {
    margin-top: 1em;
    list-style: none;
    display: flex;
    justify-content: center;
  }
  
  .social-icons li {
    margin: 1em;
  }
  
  .social-icons a {
    color: #333;
    font-size: 24px;
    margin: 0 15px;
  }
  
  .social-icons a:hover {
    color: #ff6600;
  }

  @media only screen and (max-width: 821px) {

    nav ul {
        display: none;
      }

     
      
    .logoImg {
      width: 6em;
    }
  
    nav a {
      padding: 0.5em;
    }

    .packages {
     flex-direction: column;
    }
  
    .package {
      padding: 10px;
      width: 80%;
      margin-bottom: 20px;
    }
    
    button {
      padding: 10px 15px;
      font-size: 14px;
    }

    .backgroundVideo {
      display: block; 
      width: 100%;
      height: auto;
  }
  
  .backgroundImg {
      display: none; 
  }
  
  }

