/* styles.css */

/* General site styles */
body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #f2f8fc;
  color: #333;
}

header {
  background-color: #d0e6f9;
  padding: 20px 40px 10px 40px;
  font-weight: bold;
  font-size: 1.5rem;
  color: #b8860b;
}

nav {
  text-align: center;
  margin-top: 10px;
}

nav a {
  color: #004080;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

.separator {
  height: 4px;
  background-color: #b8860b;
  margin: 0;
}

.hero {
  background: url("images/bg1.png") no-repeat center center/cover;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero p {
  font-size: 1.25rem;
}

.content {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  background-color: #f2f8fc;
  border-radius: 8px;
}

footer {
  background-color: #d0e6f9;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: #333;
}

footer p {
  margin: 5px 0;
}

@media (max-width: 600px) {
  nav a {
    display: block;
    margin: 10px 0;
  }

  .hero {
    height: 30vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Contact Form Styles */
form {
  max-width: 600px;
  margin: 0 auto;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 20px;
  box-sizing: border-box;
}

form textarea {
  resize: vertical;
}

form button {
  background-color: #004080;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #002c5e;
}

/* Contact page layout */
.contact-page {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.office-boxes, .contact-form {
  flex: 1 1 25%;
}

.office {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.office img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 15px;
}

.office h3 {
  margin: 0;
  font-size: 1.2em;
}

.office p {
  margin: 4px 0;
  font-size: 0.95em;
}

@media (max-width: 768px) {
  .contact-page {
    flex-direction: column;
  }
}

