body {
  background-color: var(--pastel-blue-light);
}

.content-wrapper {
  max-width: 850px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 3rem 2rem;
  margin: 4rem auto;
  position: relative;
  overflow: hidden;
}

.content-wrapper::before,
.content-wrapper::after {
  content: "";
  position: absolute;
  opacity: 0.20;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.content-wrapper::before {
  background-image: url('/static/assets/paint-brush.png');
  top: -40px;
  left: -60px;
  width: 180px;
  height: 180px;
  transform: rotate(-20deg);
}

.content-wrapper::after {
  background-image: url('/static/assets/paint-roller.png');
  bottom: -30px;
  right: -50px;
  width: 160px;
  height: 160px;
  transform: rotate(15deg);
}

h1, h2, h3 {
  position: relative;
  z-index: 1;
}

p, ul, .alert {
  position: relative;
  z-index: 1;
}

ul {
  padding-left: 1.2rem;
}

.alert-primary {
  background-color: #eaf4ff;
  border-color: #cce4ff;
  color: #004a99;
}

.btn-primary {
  background-color: #0056b3;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
}
.pleasant-stains {
  background-image: url('/static/assets/paint_stains.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: min(100%, 492px);
  aspect-ratio: 492 / 145;
  margin: 0 auto; /* centers horizontally */
}
