* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: #0f172a;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #38bdf8;
}

/* HERO */
.hero {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: white;
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: #38bdf8;
  color: black;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background: #0ea5e9;
}

/* SECTIONS */
.section {
  padding: 70px 0;
  text-align: center;
}

.light-bg {
  background: #f1f5f9;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

/* GRID */
.services-grid,
.leaders-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card h3 {
  margin-bottom: 10px;
}

/* CONTACT LINKS */
#contact a {
  color: #0f172a;
  font-weight: bold;
  text-decoration: none;
}

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

/* FOOTER */
footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* ============================= */
/* ONLY FIX: Leadership Center  */
/* ============================= */

#leadership h2,
#leadership .section-quote {
  text-align: center !important;
}