/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

h1, h2, h3 {
  color: #444;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 5px;
  text-decoration: none;
}

.btn:hover {
  background: #0056b3;
}

/* Header Styles */
header {
  background: #007bff;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header .btn {
  background: #0056b3;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

/* Section Styles */
section {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

#about, #services, #testimonials, #contact {
  text-align: center;
}

.service-item {
  margin: 20px 0;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: #fff;
}

footer a {
  color: #fff;
  text-decoration: none;
}
