.center-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  width: 80%;              /* adjust width as needed */
  margin: 40px auto;       /* center horizontally on the page */
  padding: 30px;           /* inner spacing */
  
  border: 2px solid #007bff;   /* blue border */
  border-radius: 12px;         /* rounded corners */
  background-color: #f8f9fa;   /* light background */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* subtle shadow */
}
.center-box h6 {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  max-width: 700px;  /* keeps text nicely readable */
}