/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  background-color: #333;
  color: white;
  padding: 20px 0;
}

header h1 {
  font-size: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Intro Section */
#intro {
  background-color: #fff;
  padding: 40px 0;
  text-align: center;
}

#intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#intro p {
  font-size: 1.1rem;
  color: #555;
}

/* Services Section */
#services {
  background-color: #fff;
  padding: 40px 0;
}

#services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.service {
  margin-bottom: 30px;
}

.service h3 {
  font-size: 1.8rem;
  color: #333;
}

.service p {
  font-size: 1.1rem;
  color: #555;
}

/* Locations Section */
#locations {
  background-color: #f9f9f9;
  padding: 40px 0;
}

#locations h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#locations ul {
  list-style: none;
  text-align: center;
}

#locations ul li {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 10px;
}

/* Contact Section */
#contact {
  background-color: #fff;
  padding: 40px 0;
}

#contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

form label {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

form input, form textarea {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #555;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.5rem;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }

  #intro h2 {
    font-size: 2rem;
  }

  .service h3 {
    font-size: 1.5rem;
  }

  .service p {
    font-size: 1rem;
  }

  form input, form textarea {
    max-width: 100%;
  }
}
