/* White rounded box for your intro */
.intro-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  max-width: 900px;   /* wider box */
  margin: 40px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Heading style inside the box */
.intro-box h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Description style inside the box */
.intro-box p {
  font-size: 1.1rem;
  color: #333;
}
/* White rounded box for your intro */
.intro-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  max-width: 900px;   /* wider box */
  margin: 40px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Heading style inside the box */
.intro-box h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Description style inside the box */
.intro-box p {
  font-size: 1.1rem;
  color: #333;
}

/* ---- Page-specific background colors ---- */

/* Home page: light orange */
body.page-home {
  background-color: #ffe4cc;
}

/* Goals Galore page: light yellow */
body.page-goals {
  background-color: #fff9c4;
}

/* Sources page: light sunset color (soft peachy-pink) */
body.page-sources {
  background-color: #ffd6c9;
}