body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}
header {
  background: #004080;
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.left, .right {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1 1 400px;
}
.left h2, .right h2 {
  margin-top: 0;
  color: #004080;
}
.contact-info p {
  margin: 10px 0;
  font-size: 1.1em;
}
.contact-info strong {
  display: inline-block;
  width: 90px;
  color: #004080;
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
input[type="text"],
input[type="email"],
textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  resize: vertical;
}
textarea {
  min-height: 100px;
}
button {
  background: #004080;
  color: white;
  padding: 15px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background: #002850;
}
.map-container {
  max-width: 1000px;
  margin: 40px auto 80px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  height: 400px;
}
iframe {
  border: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}
