body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #f9f9f9;
}

/* Header */
header {
  background-color: #0d1b2a;
  color: white;
  padding: 30px 30px;
  position: relative;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.6em;
  font-weight: bold;
  padding-right: 20px;
  flex: 1;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex: 2;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.phone {
  flex: 1;
  text-align: right;
  font-weight: normal;
}

/* Gold bar under top menu */
header::after {
  content: "";
  display: block;
  height: 4px;
  background-color: #d4af37;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Hero section */
.hero {
  background: url('bg1.png') no-repeat center center/cover;
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px #000;
}

.hero h1 {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

/* Content */
.content {
  padding: 40px 30px;
  color: #222;
  max-width: 1000px;
  margin: auto;
}

/* Form styling */
form input,
form textarea {
  width: 100%;
  max-width: 600px;
  padding: 12px;
  font-size: 1em;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #0d1b2a;
  color: white;
  padding: 12px 24px;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #d4af37;
  color: #0d1b2a;
}

/* Footer */
footer {
  background-color: #0d1b2a;
  color: white;
  padding: 20px 30px;
}

.footer-container {
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

/* Office image boxes */
.office img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 15px;
}
