.about-page {
  margin-top: 40px;
  margin-bottom: 80px;
}

.about-hero {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.6s ease-out;
}

.about-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 18px;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.6s ease-out;
}

.about-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1e293b;
}

.about-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e40af;
}

.about-card p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 15px;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

@media (max-width: 640px) {
  .about-hero h1 { font-size: 28px; }
  .about-hero p { font-size: 16px; }
  .about-card { padding: 24px; }
}

.about-footer {
  margin-top: 40px;
  text-align: center;
}

.about-footer a {
  color: #94a3b8; /* greyed out */
  text-decoration: none;
  font-size: 14px;
}

.about-footer a:hover {
  color: #64748b; /* slightly darker on hover */
  text-decoration: underline;
}

.about-footer img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
  opacity: 0.6; /* greyed icon */
}
