body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  header {
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  nav li {
    margin-right: 20px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
  }
  
  .logo {
    margin-right: 20px;
  }
  
  .logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }
  
  main {
    display: flex;
    flex-direction: column; 
    padding: 2em;
    /*align-items: center;
    
    display: flex;*/
    justify-content: space-between; /* Distributes space between sections */
    padding: 20px;
  }
  
  section {
    background-color: #f7f7f7;
    padding: 2em;
    margin:  20px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1; /* Each section takes up equal width */
    /*padding: 20px;
    box-sizing: border-box; 
    border: 1px solid #ddd; 
    background-color: #f9f9f9;*/
  }
  
  h1, h2, h3 {
    color: #333;
    margin-bottom: 10px;
  }
  
  p {
    margin-bottom: 20px;
  }
  
  button {
    display: block; 
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #444;
  }

  /* General form styling */
form {
 
  margin: 0 auto; /* Center the form horizontally */
  padding: 20px;
   /*border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
 box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
 
}


input[type="text"],
input[type="email"],
input[type="phone"],
textarea {
  width: 50%; /* Full width of the form container */
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Includes padding and border in width */
  font-size: 16px;
}

/* Styling for textarea */
textarea {
  height: 150px; /* Fixed height for textarea */
  resize: vertical; /* Allows vertical resizing */
}


/* Optional: Styling for placeholders */
input::placeholder,
textarea::placeholder {
  color: #888;
  font-style: italic;
}

  
  .hero-content {
    display: flex ;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*color: #fff;*/
    }
  
  .hero-image {
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
  
  .service-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .service-card i {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
  
  .pricing-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-card h3 {
    margin-top: 0;
  }

  .pricing-card p {
    font-weight: bold;
    margin-top: 10px;
  
  }
  .pricing-card ul {
    list-style: disc;
    margin: 0;
    padding-left: 20px;
  }
  
  .pricing-card li {
    margin-bottom: 10px;
    line-height: 1.5; 
  }

  
  footer {
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
    clear: both;
  }