
.case-section{
  padding:70px 20px;
  background:#f4f7fb;
  font-family:Arial;
}

.case-title{
  text-align:center;
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
}

.case-subtitle{
  text-align:center;
  color:#666;
  margin-bottom:50px;
}

.case-grid{
  display:flex;
  flex-wrap:wrap;
  gap:25px;
}

.case-card{
  flex:1;
  min-width:260px;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}

.case-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.case-img{
  height:200px;
  overflow:hidden;
}

.case-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.case-content{
  padding:20px;
}

.case-tag{
  font-size:12px;
  color:#fff;
  background:#111;
  display:inline-block;
  padding:4px 10px;
  border-radius:20px;
  margin-bottom:10px;
}

.case-card-title{
  font-size:16px;
  font-weight:700;
  margin-bottom:8px;
}

.case-card-text{
  font-size:14px;
  color:#555;
  line-height:1.5;
}

.case-cta{
  margin-top:50px;
  text-align:center;
}

.case-cta a{
  display:inline-block;
  background:#111;
  color:#fff;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
}
