* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #f5f7fa;
  color: #333;
  padding: 0 1rem;
}
.hero {
  background: #0077b6;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero .subtitle {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}
.section {
  padding: 2rem 0;
  max-width: 1000px;
  margin: auto;
}
.section h2 {
  color: #0077b6;
  margin-bottom: 1rem;
}
.quote-box {
  background: #e0f2fe;
  padding: 1rem;
  margin-top: 1rem;
  border-left: 4px solid #0077b6;
  font-style: italic;
}
.image-right {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.image-right .text {
  flex: 1;
}
.image-right .image {
  flex: 1;
}
.image-right img {
  width: 100%;
  border-radius: 10px;
}
.caption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.3rem;
}
.cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.card {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1;
  text-align: center;
}
.card i {
  font-size: 2rem;
  color: #0077b6;
}
blockquote {
  margin: 1rem 0;
  padding: 1rem;
  background: #f0f8ff;
  border-left: 4px solid #0077b6;
  font-style: italic;
}
.stat-grid {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}
.stat {
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.stat h3 {
  color: #0077b6;
  font-size: 2rem;
}
.progress-bar-container {
  background: #ddd;
  height: 25px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1rem;
}
.progress-bar {
  height: 100%;
  background-color: #0077b6;
  color: white;
  text-align: center;
  line-height: 25px;
  font-weight: bold;
}
footer {
  background: #0077b6;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
