:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --bg-light: #f4f6f9;
}

/* SECTION */


/* HERO */
.about-hero {
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}

.about-hero h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-hero p {
  color: #444;
  line-height: 1.8;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

/* BOX */
.about-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-box h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
  position: relative;
}

.about-box h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--accent-red);
  position: absolute;
  bottom: -5px;
  left: 0;
}

/* HIGHLIGHT */
.about-highlight {
  background: var(--primary-blue);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 50px;
}

.about-highlight h3 {
  margin-bottom: 10px;
}

/* SPLIT */
.about-split {
  display: flex;
  gap: 30px;
  align-items: center;
}

.split-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
}

.split-content h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-split {
    flex-direction: column;
    text-align: center;
  }
}