body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9fafc;
  color: #0a2c61;
}
.container {
  max-width: 1080px;
  margin: auto;
  padding: 2rem;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.header h1 {
  font-size: 1.8rem;
  color: #0053b3;
  margin: 0;
}
nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  color: #0a2c61;
}
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.hero-text {
  flex: 1;
  min-width: 280px;
}
.hero-text h2 {
  font-size: 2rem;
}
.hero-text p {
  margin-bottom: 1rem;
}
.hero-text button {
  background-color: #0053b3;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}
.hero img {
  max-width: 300px;
  border-radius: 10px;
}
.info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 2rem;
}
.info-item {
  flex: 1;
  min-width: 250px;
}
.about, .contact {
  margin-top: 2rem;
}
.map {
  margin-top: 2rem;
  width: 100%;
  height: 240px;
  border-radius: 12px;
  border: none;
}
.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #3b5b88;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid #e0e6ef;
}
