/* About Section Styles - Vallabha Mohta Inspired */
.about-section {
  background-color: var(--bg-primary);
  padding: var(--space-16) 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-12);
  text-align: center;
}

.about-intro .highlight {
  color: var(--primary-color);
  font-weight: var(--font-semibold);
}

/* Custom Bullet List Styles */
.about-highlights {
  margin: var(--space-12) 0;
}

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

.about-item {
  position: relative;
  padding-left: var(--space-8);
  margin-bottom: var(--space-6);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Custom Bullets - Consistent Orange Circles */
/* Unified bullet style for all list items to ensure consistency */
.about-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--accent-color) !important; /* Force orange on Safari */
  border-radius: 50%;
  border: 4px solid var(--bg-primary);
  box-shadow: var(--shadow-sm);
}

/* Metric Highlighting */
.about-item .metric {
  color: var(--accent-color);
  font-weight: var(--font-semibold);
}

/* Journey Button */
.btn-text {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: var(--space-8);
  transition: color var(--transition-fast);
}

.btn-text:hover {
  color: var(--primary-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: var(--space-12) 0;
  }
  
  .about-intro {
    font-size: var(--text-base);
    margin-bottom: var(--space-8);
  }
  
  .about-item {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
  }
  
  /* Removed font-size override for bullets since we now use CSS circles */
  /* .about-item::before {
    font-size: var(--text-base) !important;
  } */
}
