

/* WRAPPER */
.about-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* BLOCK */
.about-block {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
}

/* LEFT ACCENT LINE */
.about-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: var(--primary-blue);
  border-radius: 4px;
}

/* HEADINGS */
.about-block h2 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 15px;
  text-align:center;
}

/* TEXT */
.about-block p {
  color: #444;
  line-height: 1.8;
  font-size: 15px;
}

.about-block .lead {
  font-weight: 500;
  color: #333;
}

/* DIVIDER */
.section-divider {
  height: 1px;
  background: #eee;
  margin: 25px 0;
}

/* LIST */
.about-block ul {
  padding-left: 20px;
}

.about-block ul li {
  margin-bottom: 8px;
}

/* GRID (VISION + VALUES) */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

/* CARD */
.highlight-card {
  background: #f9fbff;
  padding: 20px;
  border-radius: 10px;
  border-top: 3px solid var(--primary-blue);
  transition: 0.3s;
}

.highlight-card:hover {
  border-top: 3px solid var(--accent-red);
  transform: translateY(-5px);
}

/* TITLE */
.highlight-card strong {
  color: var(--primary-blue);
}

/* BULLETS */
.highlight-card ul li::marker {
  color: var(--accent-red);
}

/* RESPONSIVE */
@media(max-width:768px){

  .about {
    padding: 60px 0;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

}