/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
  padding: 0;
}

/* Header */
header {
  background-color: #1e3a8a; /* deep blue */
  color: white;
  padding: 1rem 2rem;
  text-align: center;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero section */
.hero {
  background-color: #e0f2fe; /* light blue */
  padding: 2rem;
  text-align: center;
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1rem;
}

/* Services section */
#services {
  padding: 2rem;
  background-color: white;
}

#services h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service {
  background-color: #f1f5f9;
  border-radius: 10px;
  padding: 1.5rem;
  width: 280px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service h3 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

/* Contact Section */
#contact {
  padding: 2rem;
  background-color: #e2e8f0;
}

#contact h2 {
  text-align: center;
  margin-bottom: 1rem;
}

#contact p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.map {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #1e3a8a;
  color: white;
  font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 600px) {
  .service-list {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }
}
