* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.5;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero {
  background: url('../assets/about-bg-fp.jpg') center/cover no-repeat;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
}
.about-hero .container {
  position: relative;
  text-align: center;
  z-index: 1;
}
.hero__title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.breadcrumb {
  font-size: 0.9rem;
}
.about {
  padding: 2rem 0;
}
.about__inner {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.about__mission, .about__vision {
  flex: 1;
}
.about__image {
  flex: 1;
}
.about__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.about--reverse .about__inner {
  flex-direction: row-reverse;
}
.update-note {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}
.update-note p {
  text-align: center;
  font-size: 0.95rem;
}