/* Home page layout */
body.home {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home .top-section {
  margin-top: 15vh;
  text-align: center;
  max-width: 700px;
  padding: 0 1rem;
}

.home .welcome-text {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.home .separator {
  width: 75%;
  height: 5px;
  opacity: 0.9;
  margin: 2rem auto;
}

.home .intro-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-top: 2.5rem;
}

.home .intro-text p { margin-bottom: 1rem; }

@media (max-width: 600px) {
  .home .welcome-text { font-size: 1.6rem; }
  .home .intro-text { font-size: 0.9rem; }
}
