/* About Section */
.about-section {
  background: var(--bg-white);
}

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

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: left;
}

.about-highlight {
  font-size: 1.15rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 30px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(109, 76, 188, 0.05) 0%, rgba(109, 76, 188, 0.1) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

/* Skills Section */
.skills-section {
  background: var(--bg-light);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.skill-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.skill-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.skill-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.skill-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}