	:root {
  --primary-color: #070b3b;
  --secondary-color: #0066cc;
  --text-color: #333;
  --bg-color: #ffffff;
}
.hero {
    background: linear-gradient(135deg, #070b3b, #0066cc);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}
.hero p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}
.vision-statement {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0;
  text-align: center;
}
.vision-statement h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.vision-statement p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}
.vision-statement .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.section {
  padding: 4rem 0;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-align: center;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.card-item {
  background-color: #f8f9fa;
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.card-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 700;
}
.card-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}
.stats {
  background-color: #f0f5ff;
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.stat-item p {
  font-size: 1rem;
  color: var(--text-color);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-grid h2 {
  font-size: 2rem;
  border-left: 4px solid #0066cc;
  padding-left: 15px;
}
.about-grid p {
    font-size: 1.1rem;
}
@media screen and (max-width:992px) {
    .about-grid {
        display: flex;
        flex-direction: column-reverse;
    }
}
