.about-section {
  padding: 140px 60px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.about-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 60px;
  margin-bottom: 16px;
  position: relative;
}

.about-content h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #ff6154;
  border-radius: 2px;
  margin-top: 10px;
}

.about-content p {
  font-size: 17px;
  color: #444;
  margin-bottom: 22px;
  line-height: 1.8;
}

.about-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.about-content li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.about-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: #ff6154;
  border-radius: 50%;
}

.about-content a {
  color: #ff6154;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.about-content a:hover {
  color: #e5554a;
  text-decoration: underline;
}

/* Smooth responsive behavior */
@media (max-width: 768px) {
  .about-section {
    padding: 100px 20px;
  }

  .section-title {
    font-size: 34px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .about-content h2 {
    font-size: 20px;
  }

  .about-content p,
  .about-content li {
    font-size: 15px;
  }
}