.gap-box {
  width: 100%;
  height: 72px;
  background-color: #fff;
}
.section-padding {
  padding: 80px 0;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-title {
  padding: 60px 0;
  text-align: center;
}
.page-title h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}
.page-title p {
  font-size: 16px;
  color: #666;
}
.case-showcase {
  padding: 60px 0;
  background: #fff;
}
.case-item {
  padding: 15px;
}
.case-content {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.case-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.case-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
.case-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-info {
  padding: 20px;
  text-align: center;
}
.case-info h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
}
.case-info p {
  font-size: 14px;
  color: #666;
}
.case-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.case-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .case-item {
    padding: 10px;
  }
  .case-info {
    padding: 15px;
  }
  .case-info h3 {
    font-size: 16px;
  }
}
.dev-process {
  padding: 80px 0;
  background: #fff;
}
.dev-process .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.dev-process .section-title h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
}
.dev-process .section-title p {
  font-size: 16px;
  color: #666;
}
.dev-process .process-list .process-item {
  text-align: center;
  padding: 20px;
}
.dev-process .process-list .process-item .process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.dev-process .process-list .process-item .process-icon i {
  font-size: 36px;
  color: #333;
}
.dev-process .process-list .process-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}
.dev-process .process-list .process-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.dev-process .process-list .process-item:hover .process-icon {
  transform: translateY(-5px);
  background: #b3b3b3;
}
@media screen and (max-width: 768px) {
  .dev-process {
    padding: 40px 0;
  }
  .dev-process .section-title {
    margin-bottom: 30px;
  }
  .dev-process .section-title h2 {
    font-size: 24px;
  }
  .dev-process .process-item {
    margin-bottom: 30px;
  }
  .dev-process .process-item .process-icon {
    width: 60px;
    height: 60px;
  }
  .dev-process .process-item .process-icon i {
    font-size: 28px;
  }
  .dev-process .process-item h3 {
    font-size: 18px;
  }
}
