/* About Section Styles */
.about-section {
  padding: 18px 24px;
  background: var(--section-bg-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 20px auto 0 auto;
}
.about-section h2, .about-section h3 {
  font-family: var(--section-heading-font);
  font-weight: var(--section-heading-weight);
  color: var(--section-heading-color);
  margin-bottom: 16px;
}
.about-section h2 {
  font-size: var(--section-heading-size);
  margin-bottom: var(--section-heading-margin);
  color: var(--section-heading-color);
  font-family: var(--section-heading-font);
  font-weight: var(--section-heading-weight);
  text-align: left;
}
.about-section h2 i, .about-section h3 i {
  color: var(--section-icon-color);
  margin-right: 15px;
}
.about-section h2 i {
  margin-right: 15px;
}
.about-section h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: var(--section-heading-font);
  font-weight: 600;
  color: var(--section-heading-color);
}
.about-section p {
  color: var(--body-color);
  font-size: var(--body-font-size);
  margin-bottom: 16px;
  line-height: 1.6;
  font-family: var(--body-font);
}
.about-section h3 i + i {
  margin-left: 6px;
}
.about-divider {
  border-top: 2px solid #e3eaf2;
  margin: 24px 0;
}
.aboutme-icon {
  color: var(--primary-color);
}
.philosophy-icon {
  color: var(--accent-color);
}
.goals-icon {
  color: #43a047;
}
.lab-icon {
  color: var(--text-color);
}
@media (max-width: 700px) {
  .about-section {
    padding: 10px 6vw;
  }
} 