* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f0f2f5;
}

header {
  width: 100%;
}

.logo {
  height: 100px;
  width: 100px;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.about-section {
  padding: 30px 15px;
  background-color: #ffffff;
}

.about-section h1 {
  text-align: center;
  color: #007bff;
  margin-bottom: 10px;
}

.tagline {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.about-content,
.why-choose-us,
.mission,
.services-list,
.cta {
  margin-bottom: 30px;
}

.about-section h2, .about-section h3 {
  color: #007bff;
  margin-bottom: 10px;
}

.why-choose-us ul {
  list-style-type: none;
  padding-left: 0;
}

.why-choose-us li {
  margin-bottom: 10px;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.service-box {
  background-color: #e8f0fe;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.contact-btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.contact-btn:hover {
  background-color: #0056b3;
}

footer {
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: auto;
}

.footer-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: white;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo {
    height: 70px;
    width: 70px;
  }

  .footer-logo {
    height: 70px;
    width: 70px;
  }

  .tagline {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-btn {
    width: 100%;
  }

  .about-section h1 {
    font-size: 24px;
  }

  .about-section p, li {
    font-size: 15px;
  }
}