* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #333;
  color: #fff;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 70px;
  width: auto;
}

.company-name {
  font-size: 1.8em; /* Adjusts font size to match the 70px logo height */
  color: #fff;
  margin-left: 10px; /* Space between the logo and the company name */
  font-weight: bold;
}

header nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: #f4f4f4;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero button {
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.about,
.services,
.why-choose-us,
.contact {
  padding: 60px 20px;
  text-align: center;
}

.services .service-item {
  margin: 20px 0;
}

.services .service-item img {
  width: 400px;
  height: auto;
  margin-bottom: 10px;
}

.services .service-item p {
  font-size: 1.2em;
}

.why-choose-us .key-points {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.why-choose-us .key-points div {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  font-size: 1.1em;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.contact form input,
.contact form textarea {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact form button {
  background: #333;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
  font-size: 1em;
  border-radius: 5px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: #fff;
}
