* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
  padding-bottom: 100px;
}
header {
  background-color: #003366;
  padding: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo {
  height: 60px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.hero {
  padding: 60px 20px;
  background: linear-gradient(to right, #00539C, #0077C8);
  color: white;
  text-align: center;
}
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}
section h2 {
  color: #003366;
  margin-bottom: 20px;
  font-size: 2rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}
.services div {
  margin-bottom: 20px;
}
.clients-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.clients-logos img {
  width: 120px;
  height: auto;
}
.testimonial {
  background-color: #f7f7f7;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  font-style: italic;
  border-left: 4px solid #00539C;
}
form input, form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}
form button {
  background-color: #003366;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
  margin-top: 40px;
}
.leadership-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}
.leader-card {
  background-color: #f0f4f8;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}
.leader-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
.leader-card h3 {
  color: #003366;
  margin-bottom: 5px;
}
.leader-card .title {
  font-weight: bold;
  color: #0077C8;
  margin-bottom: 10px;
}
.leader-card p {
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .logo {
    margin-bottom: 10px;
  }
}
