* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #000;
}
header {
  background-color: #fff;
  color: #000;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 105px;
}
header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
header p {
  font-size: 1.1rem;
}
nav {
  background-color: #365f91;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0.5rem;
}
nav ul li {
  margin: 0 1rem;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #2c4a73;
}
.container {
  max-width: 768px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
section {
  margin-bottom: 2rem;
}
h2, h3 {
  margin-bottom: 1rem;
  color: #222;
}
ul.service-list {
  list-style: disc inside;
}
address {
  font-style: normal;
  line-height: 1.8;
}
footer {
  background-color: #365f91;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  nav ul li {
    margin: 0.5rem 0;
  }
}
.faq-item {
  margin-bottom: 1.5rem;
}
.faq-item h3 {
  cursor: pointer;
  background-color: #eee;
  padding: 0.75rem;
  border-radius: 5px;
}
.faq-item p {
  padding: 0.75rem;
  background-color: #f4f4f4;
  border-left: 4px solid #222;
  display: none;
  margin-top: 0.5rem;
  border-radius: 5px;
}
.hours-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hours-section div {
  text-align: left;
}
