/* ===============================
   Global Reset
   =============================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===============================
   Base Styling
   =============================== */
body {
  font-family: "Georgia", "Times New Roman", serif;
  background: #e9edf3;
  color: #243047;
  line-height: 1.6;
  padding: 24px;
}

/* ===============================
   Header
   =============================== */
header {
  background: linear-gradient(135deg, #1c2740, #27385f);
  color: white;
  padding: 36px 28px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 10px 24px rgba(20, 30, 50, 0.15);
}

.header-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

header h1 {
  font-size: 2.7rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

header p {
  color: #d9e2f2;
  margin-bottom: 12px;
}

header strong {
  color: white;
}

header hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin: 18px 0;
}

.pitch {
  margin-top: 10px;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* ===============================
   Navigation
   =============================== */
nav {
  display: flex;
  gap: 22px;
  margin-top: 12px;
  margin-bottom: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: #dbe6ff;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: white;
  border-bottom: 2px solid white;
}

/* ===============================
   Main Layout
   =============================== */
main {
  max-width: 1100px;
  margin: auto;
}

/* ===============================
   Content Sections
   =============================== */
section {
  background: white;
  border: 1px solid #d7deea;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

section h2 {
  color: #1f2f55;
  font-size: 1.6rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #c9d4e8;
  padding-bottom: 8px;
}

section h3 {
  color: #2f4a7a;
  margin-top: 18px;
  margin-bottom: 8px;
}

/* ===============================
   Text & Lists
   =============================== */
p {
  margin-bottom: 14px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

ul,
ol {
  margin-left: 24px;
  margin-top: 8px;
}

li {
  margin-bottom: 8px;
}

/* ===============================
   Images
   =============================== */
img {
  max-width: 100%;
  height: auto;
}

.diagram-image {
  display: block;
  width: 100%;
  max-width: 500px;
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid #d7deea;
}

/* ===============================
   Video
   =============================== */
video {
  width: 100%;
  max-width: 750px;
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid #d7deea;
  display: block;
}
/* ===============================
   Team Grid
   =============================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.team-card {
  background: #f7f9fc;
  border: 1px solid #d7deea;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px auto;
  border-radius: 8px;
  border: 2px solid #c8d5ee;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.team-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.role {
  font-weight: bold;
  color: #4a5d80;
  margin-bottom: 4px;
}

.email {
  font-size: 0.9rem;
  color: #444;
  word-break: break-word;
  margin: 0 auto;
}

/* ===============================
   Info Cards
   =============================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.info-card {
  background: #f7f9fc;
  border: 1px solid #d7deea;
  border-radius: 14px;
  padding: 20px;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}



/* ===============================
   Footer 
   =============================== */
footer {
  text-align: center;
  font-size: 0.85rem;
  color: #667085;
  margin-top: 40px;
}
