body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background: #333;
  color: #fff;
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container p {
  text-align: center;
}

.navbar .brand {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: auto;
  margin-right: 10px;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
}

.navbar .nav-links li a:hover {
  background: #555;
  border-radius: 5px;
}

.hero-section {
  background: #f4f4f4;
  padding: 100px 0;
  text-align: center;
}

.hero-section .container {
  max-width: 800px;
  margin: auto;
}

.hero-section h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 18px;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background: #e8491d;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.button:hover {
  background: #333;
}

.services-section, .about-section, .contact-section {
  padding: 50px 0;
  background: #fff;
}

.services-section h2, .about-section h2, .contact-section h2 {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin-bottom: 20px;
}

.services-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.service {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.service h3 {
  margin-bottom: 10px;
}

.service-image {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}


footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}


.contact-section {
  text-align: center;
}