.problem-promise {
  background: #f7f5e7; /* parchment background */
  padding: 4rem 1.5rem;
  color: #0b3d0b;
}

.problem-promise h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0b3d0b;
}

.problem-promise p {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

.problem-promise-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

/* White card containers */
.card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.problem-image,
.solution-image {
  flex: 0 0 200px;
  text-align: center;
}

.problem-image svg,
.solution-image svg {
  max-width: 180px;
  border-radius: 6px;
}

.problem-text,
.solution-text {
  flex: 1;
}

.problem-text h3,
.solution-text h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #0b3d0b;
}

.problem-text ul,
.solution-text ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.6;
}

.shop-link {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
}

.shop-link a {
  color: #0b3d0b;
  font-weight: bold;
  text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
    text-align: center;
  }

  .problem-image,
  .solution-image {
    margin-bottom: 1rem;
  }
}
