
.intro-box {
  max-width: 500px;          /* box won’t be too wide */
  margin: 40px auto;         /* centers horizontally with some top/bottom spacing */
  padding: 20px;             /* space inside the box */
  background-color: #e0cfff; /* light purple cozy color */
  border-radius: 15px;       /* rounded corners */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* subtle shadow */
  text-align: center;        /* center the text */
  font-family: 'Arial', sans-serif; /* clean font */
}

.intro-box h2 {
  margin-top: 0;             /* remove default margin on top */
}

.intro-box p {
  color: #333;               /* dark text for readability */
  line-height: 1.5;          /* better spacing for text */
}