* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

.top-bar {
  background-color: #004a99;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 0.9em;
}

.top-bar a {
  color: #ffffff;
  text-decoration: underline;
  margin-left: 5px;
}

header {
  background: #0078D7;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

header button {
  background: white;
  color: #0078D7;
  border: none;
  padding: 10px 25px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
}

.services, .contact {
  background: white;
  padding: 40px 20px;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.services h2, .contact h2 {
  margin-bottom: 20px;
  text-align: center;
}

.services ul {
  list-style: none;
}

.services li {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

button[type="submit"] {
  background: #0078D7;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}
.area {
  background: white;
  padding: 40px 20px;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.area p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}