* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 50px;
  background-color: #ff6347;
  color: white;
}

header h1 {
  font-size: 2.5em;
}

header p {
  font-size: 1.2em;
  margin-top: 10px;
}

section.about {
  background-color: white;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 800px;
}

section.about h2 {
  color: #ff6347;
  font-size: 2em;
  margin-bottom: 10px;
}

section.about p {
  font-size: 1.1em;
  margin: 10px 0;
  line-height: 1.8;
}

section.location {
  background-color: white;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 800px;
}

section.location h2 {
  color: #ff6347;
}

section.location p {
  font-size: 1em;
  margin: 10px 0;
}

button.map-btn {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

button.map-btn:hover {
  background-color: #0056b3;
}

footer {
  text-align: center;
  background-color: #333;
  color: white;
  padding: 20px;
  position: fixed;
  width: 100%;
  bottom: 0;
}

footer p {
  font-size: 1em;
}
