* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

header {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 50px;
  margin-bottom: 5px;
}

header p i {
  /* Add Font Awesome styling here */
  /* For example, if you're using Font Awesome 5: */
  font-family: "Font Awesome 5 Solid";
  font-weight: 900;
  font-size: 16px;
}

/* Add space between the email address and the phone icon */
header p i + i {
  margin-left: 20px; /* Adjust the value as per your desired spacing */
}

nav {
  margin-top: 10px;
}

#hero {
  background-image: url('../Images/image1.jpeg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: #fff;
  margin-top: 0px;
  text-align: center;
  padding: 25px 20px 300px;
  position: relative;
}

#hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

#hero p {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 100px;
  position: absolute;
  top: 50%; /* Set the top position to 50% */
  left: 50%; /* Set the left position to 50% */
  transform: translate(-50%, -50%); /* Move the element 50% of its own height and width up and left */
}

#services ul {
  list-style: disc; /* Use 'disc' to display default bullet points */
  padding-left: 20px;

}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #ffd700;
}

main {
  height: fit-content;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

section {
  margin-top: 40px;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}


ul li{
  flex-direction: row;
  font-size: 16px;
  line-height: 1.5;
}

.testimonial {
  margin-bottom: 40px;
}

.testimonial p {
  font-style: italic;
}

.testimonial .author {
  font-weight: bold;
  margin-top: 10px;
}

#contact i{
  margin-right: 5px;
}

#contact i:last-child{
  margin-left: 20px;
}


.btn {
  background-color: #ffd700;
  color: #333;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #333;
  color: #fff;
}

form {
  max-width: 500px;
  margin: 0 auto;
}

label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

input,
textarea {
  border: 1px solid #ccc;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  margin-bottom: 20px;
}

button[type="submit"] {
  background-color: #ffd700;
  color: #333;
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #333;
  color: #fff;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer p {
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  header {
    padding: 10px;
  }

  h1 {
    font-size: 35px;
  }

  #hero{
    background-image: url(.//Images/image0.jpeg);
    padding-bottom: 150px;
  }

  #hero p{
    font-size: 15px;
    top:65%;
  }

  #hero h2{
    font-size: 35px;
  }

  a.btn{
    margin-top: 200px;
  }

#contact p{
  font-size: smaller;
}
}