:root {
  --primary-color: #7d5ba6;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --transition-base: all 0.4s ease;
}

.intro-section {
  padding: 100px 0 80px;
  overflow: hidden;
}

.intro-section__title {
  font-size: 30px;
  line-height: 1.45;
  font-weight: 500;
  color: #1a1a1a;
  max-width: 1000px;
}

.intro-section__highlight {
  color: #7d5ba6;
}

.founder-section {
  padding: 60px 0 100px;
  overflow: hidden;
}

.founder-section__title {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0;
}

.founder-section__content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.founder-section__image-wrapper {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 60px;
  overflow: hidden;
  border: 15px solid #F8F8F8;
  transform: scale(1.05); /* Safe area for parallax */
}

.founder-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-section__info {
  flex: 1;
}

.founder-section__quote {
  font-size: 16px;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 20px;
  font-weight: 400;
}

.founder-section__name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

@media (max-width: 991px) {
  .intro-section__title {
    font-size: 32px;
  }
  .founder-section__title {
    font-size: 48px;
    margin-bottom: 40px;
  }
  .founder-section__content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .intro-section__title {
    font-size: 24px;
  }
  .founder-section__title {
    font-size: 36px;
  }
  .founder-section {
    padding: 40px 0 60px;
  }
}