/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
header {
  background-color: #f8f8f8;
  padding: 20px 0;
}

.logo img {
  height: 50px;
}

.menu li {
  display: inline-block;
  margin-right: 20px;
}

.menu li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #555;
}

/* Hero section styles */
.hero {
  background-image: url("hero_bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 200px 0;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #555;
}

/* Services section styles */
.services {
  background-color: #f8f8f8;
  padding: 80px 0;
  text-align: center;
}

.services h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.service {
  margin-bottom: 40px;
}

.service img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service p {
  font-size: 16px;
}

/* About section styles */
.about {
  padding: 80px 0;
}

.about h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.about p {
  margin-bottom: 20px;
}

/* Contact section styles */
.contact {
  background-color: #f8f8f8;
  padding: 80px 0;
  text-align
  .contact h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .contact p {
    margin-bottom: 20px;
  }

  .contact form {
    margin-bottom: 40px;
  }

  .contact form input,
  .contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .contact form button {
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
  }

  .contact form button:hover {
    background-color: #555;
  }

  .contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-info .info {
    display: flex;
    align-items: center;
    margin-right: 20px;
  }

  .contact-info img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }

  /* Footer styles */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }

  footer p {
    font-size: 14px;
  }
}
