#Hero {
  background: var(--light);
  height: 100vh; /* Full screen */
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroSection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

.heroPhoto img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 6px solid var(--teal);
  object-fit: cover;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
}

.heroContent h1 {
  font-size: 3rem;
  font-weight: bold;
}

.heroContent p {
  font-size: 1.2rem;
  margin: 20px 0;
  color: var(--dark-gray);
}
