* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 18px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.header {
  background: linear-gradient(90deg, #0d3b66 0%, #1a568c 100%);
  color: white;
  padding: 50px 40px;
  text-align: center;
  position: relative;
}
h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: #e2e8f0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}
.subtitle {
  font-size: 1.4rem;
  opacity: 0.95;
  max-width: 850px;
  margin: 0 auto 25px;
  font-weight: 300;
}
.tagline {
  background: rgba(255, 255, 255, 0.15);
  display: inline-block;
  padding: 8px 25px;
  border-radius: 30px;
  margin-top: 15px;
  font-size: 1.1rem;
}
.content {
  padding: 40px;
}
h2 {
  color: #0d3b66;
  /* Dark blue as requested */
  font-size: 2.1rem;
  margin: 45px 0 25px;
  padding-bottom: 12px;
  border-bottom: 3px solid #e2e8f0;
  font-weight: 600;
}
p {
  margin-bottom: 20px;
  font-size: 1.15rem;
  color: #4a5568;
  text-align: justify;
}
.section-intro {
  background: #e6f0ff;
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
  border-left: 4px solid #3182ce;
  font-size: 1.2rem;
}
.highlight {
  background: #fff9db;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
footer {
  text-align: center;
  padding: 35px;
  background: #f8fafc;
  color: #4a5568;
  border-top: 1px solid #e2e8f0;
  font-size: 1.05rem;
}
.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
}
.stat-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a568c;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 1.1rem;
  color: #4a5568;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  .content {
    padding: 25px;
  }
  .subtitle {
    font-size: 1.15rem;
  }
}
.images {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Horizontally centers images */
  justify-content: center;
  /* Vertically centers if container has height */
  gap: 30px;
  margin: 40px 0;
}
.images img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.images figcaption {
  text-align: center;
  font-size: 1rem;
  color: #4a5568;
  margin-top: 8px;
}
