.about {
  padding: 80px 60px;
  background: #ffffff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  position: relative;
  padding: 0 16px 16px 0;
}

.about-image::before {
  content: '';
  position: absolute;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  background: #2b6cb0;
  border-radius: 20px;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.about-image.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-image img {
  width: 380px;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(43, 108, 176, 0.15);
  position: relative;
  z-index: 1;
  display: block;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition-delay: 0.3s;
}

.about-text.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-label {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2b6cb0;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #3d4a5c;
  line-height: 1.1;
}

.about-title {
  font-size: 1.04rem;
  color: #2b6cb0;
  font-weight: 600;
  margin-top: -8px;
}

.about-bio {
  font-size: 1.15rem;
  color: #666666;
  line-height: 1.85;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid #e8edf5;
}

.credential {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.97rem;
  color: #555555;
}

.credential i {
  color: #2b6cb0;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}