/* Reset some default styles */
* {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    max-width: 1200px;
  }
  h2{
    text-align: center;
    margin: 20px;
  }
  body {
    font-family: 'anton', sans-serif;
    color: #000;
    background-color: #d2cbff7d;
    
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
  }
  
  header {
    text-align: center;
  }
.nav-bar {
  display: flex;
  justify-content: space-between;
  /* background-color:#3C4652; */
  font-size: 1.2em;
  font-weight: bold;
}

.nav-bar nav {
  margin: 10px;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.logo p {
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px 0;
}

.logo svg {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

  a {
    color: #000;
    text-decoration: none;
    padding: 10px;
  }
  a:hover {
    color: #F5F5F5;
    background-color: #060609;
    border-radius: 8px;
  }

    .hero-header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      text-align: center;
      width: 100%;
      padding: 15px;
    }
  
    .hero-text {
      margin: 30px auto;
      width: 100%;
      max-width: 600px;
      /* add max-width to prevent it from being too wide */
    }
  
    .hero-img {
      margin: 0 auto;
      width: 100%;
      /* add width to make it responsive */
      max-width: 400px;
      height: auto;
      border-radius: 8px;
      
    }
  
    .hero-header img {
      max-width: 100%;
      /* set max-width to 100% to make it responsive */
      height: auto;
      border-radius: 8px;
      box-shadow: 12px 10px 2px #00000088;
    }
  
  .header h1 {
    /* font-size: 48px; */
    margin-bottom: 20px;
  }
  
  .header p {
    /* font-size: 18px; */
    color: #777;
    margin-bottom: 40px;
    text-align: center; /* Center align the text */
  }
  
 #features {
   display: flex;
   margin-bottom: 40px;
   flex-wrap: wrap;
   /* add flex-wrap property */
   width: 100%;
   /* add width property */
 }

 .feature {
   text-align: center;
   padding: 0 20px;
   width: 400px;
   /* add width for each feature */
   margin-bottom: 40px;
   /* add margin-bottom for each feature */
 }

 .feature img {
   max-width: 100%;
   height: auto;
   border-radius: 8px;
  box-shadow: 12px 10px 2px #00000088;
  margin: 7px auto;
 }
  #testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
    .testimonial {
    text-align: center;
    padding: 0 20px;
    width: 400px;
    font-weight: bolder;
    
  }
      .testimonial iframe {
    max-width: 400px;
    width: 100%;
    height: 250px;
    border-radius: 8px;
    box-shadow: 12px 10px 2px  #00000088;
    margin: 7px auto;
  }
  
  #pricing {
    display: flex;
    flex-wrap: wrap; /* Wrap the pricing items when the container is narrow */
    justify-content: center;
    align-items: center; /* Center align the items vertically */
    margin-bottom: 40px;
  }
  
  .package {
    text-align: center;
    padding: 20px;
    margin: 0 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex-basis: calc(33.33% - 40px); /* Set the initial width of each package item */
    margin-bottom: 20px;
  }
  
  .package h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .package p.price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .package ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
  }
  
  .package li {
    margin-bottom: 10px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    margin: 20px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #0056b3;
  }
  
  #contact {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  #contact h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  #contact p {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  form input[type="submit"]:hover {
    background-color: #0056b3;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
  }
  
  footer p {
    font-size: 14px;
    color: #777;
  }