/* About Us page styles */
.about-banner {
  width: 100%;
  height: 360px;
  background: #222 center/cover no-repeat;
  background-image: url('../img/course-cyber.jpg');
}
.about-title-wrap {
  text-align: center;
  padding: 56px 0 0;
}
.about-title-wrap h1 {
  color: var(--red);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  display: inline-block;
  border-bottom: 3px solid var(--red);
  padding-bottom: 6px;
}
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 980px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.about-col {
  position: relative;
  padding-left: 24px;
}
.about-col::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  border-left: 2px dashed #c9c9c9;
}
.about-item {
  position: relative;
  padding: 0 0 28px 24px;
}
.about-item:last-child { padding-bottom: 0; }
.about-item::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
}
.about-item p {
  margin: 0;
  line-height: 1.65;
  color: #333;
  font-size: 15px;
}
.enrollment-hero {
  position: relative;
  background: #111 center/cover no-repeat;
  background-image: url('../img/course-cyber.jpg');
  color: #fff;
  padding: 80px 0 56px;
  margin-top: 64px;
}
.enrollment-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.enrollment-hero .container {
  position: relative;
  text-align: center;
}
.enrollment-hero h2 {
  font-size: 32px;
  margin: 0 0 16px;
  font-weight: 700;
}
.enrollment-hero p {
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.enrollment-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.enrollment-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.enrollment-stat .stat-icon {
  flex: 0 0 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  color: #fff;
}
.enrollment-stat .stat-icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.enrollment-stat .stat-num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 4px;
}
.enrollment-stat .stat-label {
  font-size: 13px;
  line-height: 1.3;
  opacity: 0.95;
}
.mvv {
  max-width: 1100px;
  margin: 72px auto;
  padding: 0 24px;
  display: grid;
  gap: 28px;
}
.mvv-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.mvv-row .mvv-img {
  height: 180px;
  background: #ddd center/cover no-repeat;
  border-radius: 4px;
}
.mvv-row h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: #111;
}
.mvv-row p {
  margin: 0;
  line-height: 1.6;
  color: #444;
}
@media (max-width: 760px) {
  .about-columns { grid-template-columns: 1fr; gap: 32px; }
  .enrollment-stats { grid-template-columns: 1fr 1fr; }
  .mvv-row { grid-template-columns: 1fr; }
}
