/* General styles */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background: #ffffffee;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

nav .logo img {
  height: 60px;
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav .nav-links a {
  text-decoration: none;
  color: #014279;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav .nav-links a:hover {
  color: #1c8f46;
}

/* Hero section */
.hero {
  height: 80vh;
  /* Replace the imported hero image with a gradient background to avoid letterboxing */
  background: linear-gradient(135deg, #014279 0%, #1c8f46 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Remove the dark overlay since the gradient already provides contrast */
.hero::before {
  display: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #014279;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #1c8f46;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.about {
  background: #f7f7f7;
  border-radius: 8px;
}

.about h2,
.services h2,
.contact h2 {
  color: #014279;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: center;
}

.services .service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.services .service {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.services .service:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.services .service h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #1c8f46;
}

.contact ul.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.contact ul.contact-list li {
  margin-bottom: 8px;
}

.contact a {
  color: #014279;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

footer {
  background: #014279;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}