/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styles */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #0067a3; /* Text in blue */
  background-color: #ffffff; /* White background */
}

/* Header styles */
header {
  background-color: #0067a3;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}
header h1 {
  font-size: 3em;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
nav {
  margin-top: 10px;
}
nav a {
  color: #fff;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
}
nav a:hover {
  color: #ffd700;
}

/* Hero section with background image */
.hero {
  background: url('https://images.unsplash.com/photo-1564846824194-346b7871b855?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0') no-repeat center center/cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.hero h2 {
  font-size: 2.2em;
  background-color: rgba(0, 100, 180, 0.6);
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  text-align: center;
  color: #fff;
}

/* Sections styles */
section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: #ffffff; /* White background for sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}
section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #0067a3; /* Heading in blue */
}

/* Our Services container as a flex row */
.services {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  padding: 20px 0;
}

/* Individual service box styles, blue background with white text for contrast */
.service-box {
  background-color: #0067a3; /* Blue background for boxes */
  color: #fff; /* White text */
  padding: 20px;
  border-radius: 12px;
  flex: 5; /* proportion 5 parts */
  max-width: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.service-box:nth-child(2) {
  flex: 3; /* middle box proportion */
}
.service-box:hover {
  transform: translateY(-5px);
}
.service-box h3 {
  margin-bottom: 15px;
}

/* Contact section styles */
#contact {
  padding: 50px 20px;
  text-align: center;
}
#contact p {
  margin-bottom: 15px;
  color: #0067a3; /* Contact text in blue */
}

/* Footer styles with map */
footer {
  background-color: #0067a3;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
}
.footer-text {
  margin-bottom: 10px;
  font-size: 1.1em;
}
.map-container {
  width: 100%;
  height: 400px;
  margin-top: 20px;
}
iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive for small screens */
@media(max-width: 768px) {
  .services {
    flex-direction: column;
  }
  .service-box {
    flex: 1 1 100%;
  }
}
