.about-section {
  padding: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(20, 20, 40, 0.9) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.about-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2.5rem 2rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  align-items: center;
  gap: 2.5rem;
}

.about-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
.team-photo {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 6px 36px rgba(59,130,246,0.25); /* Footer accent blue shadow */
  object-fit: cover;
  background: rgba(0,0,0,0.2);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
  font-family: 'Inter', Arial, sans-serif;
  /* REMOVE background, background-clip, color, -webkit-text-fill-color, text-shadow */
}

.about-description {
  font-size: 1.25rem;
  color: var(--secondary); /* Footer secondary text color */
  margin-bottom: 1.25rem;
  line-height: 1.5;
  max-width: 900px;
}

.about-list {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--accent-blue); /* Footer accent blue */
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 0;
}

.about-list li {
  margin-bottom: 0.4rem;
  color: var(--accent-blue); /* Footer accent blue */
  text-shadow: 0 1px 6px rgba(59,130,246,0.09);
}

.section-divider {
  border: none;
  border-top: 2px solid rgba(255,255,255,0.09);
  margin: 2rem auto 0 auto;
  width: 98%;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1100px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem 1rem 0.5rem;
  }
  .team-photo {
    max-width: 340px;
    margin-bottom: 1rem;
  }
  .about-content {
    align-items: flex-start;
  }
  .about-title {
    font-size: 2rem;
  }
  .about-description {
    font-size: 1.08rem;
  }
}