/* Two-column intro section */
.intro-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1000px;
  padding: 0 1rem;
}

/* Left image */
.intro-image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
}

/* Right text */
.intro-text {
  flex: 1;
  min-width: 300px;
}

.intro-text h1 {
  margin-bottom: 0.2em;
  font-size: 2rem;
}

.intro-text p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Footer below profile */
.intro-footer {
  text-align: center;
  margin-top: 3rem;
}

