body {
  background-color: #f8f9fa; /* very light grey */
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #333333;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2.5rem; /* match mb-5 */
}

/* Almond-Tea underline */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #A67B5B;
  margin: 0.5rem auto 0; /* centered beneath text */
  border-radius: 2px;
}


