/* ===== About Section Styling ===== */

.about-simple {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
  color: #1a1a1a;
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
}

.about-simple .breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 40px;
  color: #6b7a90;
}

.about-simple .breadcrumb a {
  color: #1e88e5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-simple .breadcrumb a:hover {
  color: #1565c0;
}

.about-simple .breadcrumb span {
  color: #6d7c92;
}

/* ===== Grid Layout ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ===== Image Section (右图或左图可互换) ===== */
.about-grid .about-media {
  border-radius: 16px;
  overflow: hidden;
  background: #f5f7fb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.about-grid .about-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ===== Body Section ===== */
.about-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-body h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #002175; /* 与你主色调呼应 */
}

.about-body .lead {
  font-size: 1.05rem;
  color: #2b3850;
  margin-bottom: 1.5rem;
}

.about-body p {
  margin-bottom: 1.2rem;
  color: #333;
}

/* ===== Bulleted List ===== */
.about-bullets {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
  list-style: none;
}
.about-bullets li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  color: #1a1a1a;
}
.about-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #002175;
  font-weight: 700;
}

/* ===== Meta Info ===== */
.about-meta {
  background: #f4f7ff;
  border: 1px solid #dce6ff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #0b2447;
}
.about-meta p {
  margin: 0.5rem 0;
}
.about-meta a {
  color: #1e88e5;
  text-decoration: none;
}
.about-meta a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-body h1 {
    font-size: 1.6rem;
  }
  .about-simple {
    margin: 60px auto;
  }
}
