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

/* SECTION */


/* BLOCK */
.about-block {
  max-width: 1100px;
  margin: 0 auto 50px;
}

/* CARD (CHAIRMAN) */
.about-card {
  max-width: 1100px;
  margin: 0 auto 60px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  gap: 40px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.about-img img {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* CONTENT */
.about-content {
  flex: 1;
}

/* TITLE */
.about-section h2 {
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
}

.about-section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  position: absolute;
  bottom: -6px;
  left: 0;
}

/* TEXT */
.about-section p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

/* NAME */
.about-section h4 {
  color: var(--accent-red);
  margin-top: 10px;
}

/* FULL IMAGE */
.full-img {
  width: 100%;
  border-radius: 15px;
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-card {
    flex-direction: column;
    text-align: center;
  }

  .about-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}