.about-page {
  max-width: 1200px;
  margin: 90px auto;
  padding: 0 20px;
}

.about-hero {
  text-align: center;
  margin-bottom: 80px;
}

.about-hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.about-hero p {
  max-width: 900px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
}

.about-section {
  margin-bottom: 80px;
}

.about-section h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

.about-section p {
  max-width: 900px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
}

.about-icon {
  width: 58px;
  height: 58px;
  background: #0a1340;
  color: #ffffff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
}

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

.about-card p {
  color: #444;
  line-height: 1.6;
}

.about-section.highlight {
  background: #f7f8fc;
  padding: 50px 40px;
  border-radius: 20px;
}

.about-end {
  text-align: center;
  margin-top: 100px;
}

.about-end h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.about-end p {
  max-width: 850px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
}
