/* ===== About Page Styles ===== */
.about {
  max-width: 1000px;
  margin: 36px auto;
  padding: 0 16px 40px;
}

.about-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, #fff, #fbfdff);
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(5,20,50,0.04);
  margin-bottom: 28px;
}

.about-hero .about-hero-inner {
  flex: 1;
}

.about-hero .about-hero-inner h1 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
}

.about-hero .about-hero-inner .tagline {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 16px;
}

.about-hero .about-hero-inner .lead {
  font-size: 17px;
  color: #333;
}

.about-hero-image {
  flex: 0 0 140px;
  text-align: right;
}

.about-hero-image img {
  max-width: 120px;
  border-radius: 12px;
}

.about-content {
  margin-top: 20px;
}

.about-content h2,
.about-content h3 {
  margin-top: 22px;
  font-weight: 700;
}

.about-content p,
.about-content ul {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.about-content ul {
  padding-left: 20px;
}

.about-content a {
  color: var(--blue-500);
  text-decoration: none;
}

.about-content a:hover {
  text-decoration: underline;
}
