
.use-cases {
  background: #fff;
  padding: 100px 0;
  text-align: center;
  font-family: "Manrope", sans-serif;
}

.use-cases__container {
  max-width: 1352px;
  margin: 0 auto;
  padding: 0 20px;
}

.use-cases__heading h2 {
  font-size: 64px;
  color: #2C180D;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 15px;
}

.use-cases__heading p {
  font-size: 24px;
  color: #2C180D;
  font-weight: 500;
  margin-bottom: 60px;
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.use-cases__item {
  background: #fff5ef;
  border-radius: 12px;
  padding: 40px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.use-cases__item:hover {
  background: #fff0e8;
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.use-cases__item img {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  margin: 0 auto;
  text-align: center;
}

.use-cases__item h3 {
  font-size: 32px;
  color: #2C180D;
  font-weight: 500;
  margin-bottom: 10px;
}

.use-cases__item p {
  font-size: 14px;
  color: #715D53;
  font-weight: 500;
}
