/* Container styling */
.pennmei-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); /* Subtle clean background */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* The Wellness Card */
.pennmei-card {
  max-width: 700px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px); /* Modern frosted glass effect */
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* Statement 1: Bold and Friendly */
.pennmei-tagline {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #2d3436;
  margin-bottom: 24px;
  font-weight: 400;
}

.pennmei-tagline strong {
  color: #00a8a8; /* Pennmei Brand Color - Trust Teal */
  font-weight: 700;
}

.highlight {
  color: #d63384; /* Soft pink for warmth */
  font-weight: 500;
}

/* Visual divider */
.pennmei-divider {
  width: 50px;
  height: 3px;
  background: #00a8a8;
  border: none;
  border-radius: 2px;
  margin: 30px auto;
  opacity: 0.3;
}

/* Statement 2: Visionary and Soft */
.pennmei-vision {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #636e72; /* Lighter grey for the dream/vision */
  font-style: italic;
  letter-spacing: 0.2px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .pennmei-tagline { font-size: 1.25rem; }
  .pennmei-vision { font-size: 1rem; }
  .pennmei-card { padding: 30px 20px; }
}
