.about-section {
  min-height: 100vh;
  background: var(--neutral-dark);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.about-content {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.about-left,
.about-right {
  flex: 1 0 50%;
}

.about-left {
  position: relative;
}

.about-left::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: 1rem;
  bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--support));
  border-radius: 1.5rem;
  z-index: -1;
  opacity: 0.8;
}

.about-img {
  width: 100%;
  height: 32rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.about-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.about-right {
  padding-left: 2rem;
}

.about-right-container h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: #ffffff;
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  margin-bottom: 1.5rem;
  position: relative;
}

.about-right-container h2::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
}

.about-right-container p {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  text-align: justify;
}

.about-highlights {
  background: rgba(69, 123, 157, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(168, 218, 220, 0.2);
  backdrop-filter: blur(10px);
}

.about-highlights h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--support);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-h4);
  margin-bottom: 1.5rem;
}

.about-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-highlights li {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 0;
  position: relative;
  padding-left: 2rem;
  transition: all 0.3s ease;
}

.about-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: var(--fw-bold);
}

.about-highlights li:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.about-highlights li:hover::before {
  background: var(--primary);
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .about-content {
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .about-right {
    padding-left: 1rem;
  }

  .about-img {
    height: 450px;
  }

  .about-right-container h2 {
    font-size: var(--fs-h3);
  }
}

@media (max-width: 820px) {
  .about-section {
    padding: 3rem 0;
  }

  .about-content {
    flex-direction: column;
    gap: 3rem;
    padding: 0 1rem;
  }

  .about-left,
  .about-right {
    flex: none;
  }

  .about-right {
    padding-left: 0;
  }

  .about-img {
    height: 400px;
  }

  .about-right-container h2 {
    font-size: var(--fs-h3);
    text-align: center;
  }

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

  .about-right-container p {
    text-align: center;
    margin-bottom: 2rem;
  }

  .about-highlights {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-highlights h3 {
    font-size: var(--fs-h5);
    text-align: center;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 2rem 0;
  }

  .about-content {
    gap: 2rem;
    padding: 0 0.75rem;
  }

  .about-img {
    height: 300px;
  }

  .about-right-container h2 {
    font-size: var(--fs-h4);
  }

  .about-right-container p {
    font-size: 0.95rem;
  }

  .about-highlights {
    padding: 1.25rem;
  }

  .about-highlights h3 {
    font-size: var(--fs-h6);
  }

  .about-highlights li {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.75rem;
  }

  .about-highlights li::before {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.7rem;
  }
}
