/* Base styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  background-color: #004777;
  color: #fff;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

/* Navigation */
.nav {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
#home {
  background-color: #eef6fc;
  text-align: center;
  padding: 60px 20px;
}

#home h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #004777;
}

.hero-list {
  list-style: none;
  margin-bottom: 20px;
}

.hero-list li {
  display: inline-block;
  margin: 5px 10px;
  padding: 6px 12px;
  background-color: #fff;
  border-radius: 4px;
  color: #004777;
  font-weight: 500;
}

/* Button */
.btn {
  display: inline-block;
  background-color: #007acc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #005f99;
}

/* Section Headings */
section h2 {
  font-size: 1.8rem;
  color: #004777;
  text-align: center;
  margin-bottom: 20px;
}

/* Mission Section */
#mission ul {
  padding-left: 20px;
  list-style-type: disc;
}

#mission ul li {
  margin-bottom: 10px;
}

/* Services Grid */
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card h3 {
  color: #004777;
  margin-bottom: 10px;
}

.card ul {
  padding-left: 20px;
  list-style-type: disc;
}

.card ul li {
  margin-bottom: 8px;
}

/* Footer */
footer {
  background-color: #222;
  color: #eee;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #aad;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

address {
  font-style: normal;
  margin-bottom: 10px;
}
