/* 软件开发信息发布平台 - 首页样式 */
/* 借鉴 Figma 设计稿的不规则布局风格 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: #fff;
  overflow-x: hidden;
}

.zh_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ========== Hero Section - 复杂不规则布局 ========== */
.zh_hero_section {
  padding: 120px 0 120px;
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
  position: relative;
  overflow: hidden;
}

.zh_hero_bg_pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(0, 168, 232, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.zh_hero_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.zh_hero_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #00A8E8, #0077B6);
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
}

.zh_hero_badge i {
  font-size: 16px;
}

.zh_hero_title {
  font-size: 52px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 25px;
}

.zh_hero_desc {
  font-size: 17px;
  color: #6C757D;
  line-height: 1.8;
  margin-bottom: 30px;
}

.zh_hero_features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.zh_hero_feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #2C3E50;
}

.zh_hero_feature i {
  color: #00A8E8;
  font-size: 18px;
}

.zh_hero_buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.zh_btn_primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00A8E8, #0077B6);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 168, 232, 0.3);
  transition: all 0.3s ease;
}

.zh_btn_primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 168, 232, 0.4);
}

.zh_btn_outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #fff;
  color: #00A8E8;
  border: 2px solid #00A8E8;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zh_btn_outline:hover {
  background: #00A8E8;
  color: #fff;
  transform: translateY(-3px);
}

/* Trust Indicators */
.zh_hero_trust {
  display: flex;
  align-items: center;
  gap: 20px;
}

.zh_hero_avatars {
  display: flex;
  align-items: center;
}

.zh_hero_avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -12px;
  transition: all 0.3s ease;
}

.zh_hero_avatars img:first-child {
  margin-left: 0;
}

.zh_hero_avatars img:hover {
  transform: translateY(-5px);
  z-index: 10;
}

.zh_hero_avatars_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00A8E8, #0077B6);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  margin-left: -12px;
  border: 3px solid #fff;
}

.zh_hero_trust_text {
  font-size: 14px;
  color: #6C757D;
  line-height: 1.5;
}

.zh_hero_trust_text strong {
  color: #1a1a2e;
}

/* Hero Right - Image with Floating Cards */
.zh_hero_right {
  position: relative;
  height: 550px;
}

.zh_hero_image_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.zh_hero_card_large {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  position: relative;
}

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

/* Floating Cards */
.zh_hero_float_card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 20px;
  transition: all 0.3s ease;
  animation: zh_float 3s ease-in-out infinite;
}

.zh_hero_float_card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 50px rgba(0, 168, 232, 0.25);
}

/* Float Card 1 - 成功项目 (右下角) */
.zh_float_card_1 {
  bottom: -20px;
  right: -30px;
  background: linear-gradient(135deg, #00A8E8, #0077B6);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  animation-delay: 0s;
}

.zh_float_icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zh_float_icon i {
  font-size: 28px;
  color: #fff;
}

.zh_float_number {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.zh_float_label {
  font-size: 14px;
  opacity: 0.9;
}

/* Float Card 2 - 满意度 (左上角) */
.zh_float_card_2 {
  top: 30px;
  left: -40px;
  padding: 18px 25px;
  animation-delay: 0.5s;
}

.zh_float_rating {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.zh_float_rating i {
  color: #FFB800;
  font-size: 16px;
}

.zh_float_text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

/* Float Card 3 - 服务商数量 (左中) */
.zh_float_card_3 {
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  padding: 20px 25px;
  animation-delay: 1s;
}

.zh_float_mini {
  display: flex;
  align-items: center;
  gap: 15px;
}

.zh_float_mini i {
  font-size: 32px;
  color: #00A8E8;
}

.zh_float_mini_num {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1;
  margin-bottom: 4px;
}

.zh_float_mini_text {
  font-size: 13px;
  color: #6C757D;
}

/* Float Card 4 - 快速响应 (右上角) */
.zh_float_card_4 {
  top: 40px;
  right: 40px;
  padding: 15px 22px;
  background: linear-gradient(135deg, #FFB800, #FF8C00);
  animation-delay: 1.5s;
}

.zh_float_badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.zh_float_badge i {
  font-size: 20px;
}

.zh_float_badge span {
  font-size: 14px;
  font-weight: 600;
}

@keyframes zh_float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ========== Stats Section - 统计数据深色区域 ========== */
.zh_stats_section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.zh_stats_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.zh_stat_item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.zh_stat_item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.zh_stat_number {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #00A8E8, #0077B6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zh_stat_label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* ========== Service Intro - 左右不对称布局 ========== */
.zh_service_intro {
  padding: 100px 0;
}

.zh_service_dark {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.zh_service_light {
  background: #fff;
}

.zh_service_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zh_service_grid_reverse {
  direction: rtl;
}

.zh_service_grid_reverse > * {
  direction: ltr;
}

.zh_service_image_side img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.zh_service_tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 168, 232, 0.1);
  color: #00A8E8;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.zh_service_dark .zh_service_tag {
  background: rgba(0, 168, 232, 0.2);
}

.zh_service_title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.3;
}

.zh_service_dark .zh_service_title {
  color: #fff;
}

.zh_service_desc {
  font-size: 17px;
  color: #6C757D;
  line-height: 1.8;
  margin-bottom: 30px;
}

.zh_service_dark .zh_service_desc {
  color: rgba(255, 255, 255, 0.8);
}

.zh_service_features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.zh_service_feature_item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #2C3E50;
}

.zh_service_dark .zh_service_feature_item {
  color: rgba(255, 255, 255, 0.9);
}

.zh_service_feature_item i {
  font-size: 20px;
  color: #00A8E8;
}

.zh_btn_service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #00A8E8, #0077B6);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 168, 232, 0.3);
  transition: all 0.3s ease;
}

.zh_btn_service:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 168, 232, 0.4);
}

/* ========== Projects Section - 3列卡片网格 ========== */
.zh_projects_section {
  padding: 100px 0;
  background: #F8F9FA;
}

.zh_projects_alt {
  background: #fff;
}

.zh_section_header {
  text-align: center;
  margin-bottom: 60px;
}

.zh_section_subtitle {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 168, 232, 0.1);
  color: #00A8E8;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.zh_section_title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.zh_projects_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.zh_project_card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.zh_project_card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 168, 232, 0.2);
}

.zh_project_image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #E9ECEF;
}

.zh_project_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zh_project_card:hover .zh_project_image img {
  transform: scale(1.15);
}

.zh_project_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.95), rgba(0, 119, 182, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zh_project_card:hover .zh_project_overlay {
  opacity: 1;
}

.zh_project_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  color: #00A8E8;
  font-size: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zh_project_link:hover {
  transform: scale(1.2) rotate(45deg);
}

.zh_project_content {
  padding: 30px;
}

.zh_project_title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.4;
}

.zh_project_desc {
  font-size: 15px;
  color: #6C757D;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== Why Section - 错落卡片布局 ========== */
.zh_why_section {
  padding: 100px 0;
  background: #F8F9FA;
}

.zh_why_grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.zh_why_cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.zh_why_card {
  background: #fff;
  padding: 40px 35px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.zh_why_card:hover {
  transform: translateX(-10px);
  box-shadow: 0 15px 50px rgba(0, 168, 232, 0.15);
}

.zh_why_card_top {
  transform: translateX(-30px);
}

.zh_why_card_bottom {
  transform: translateX(30px);
}

.zh_why_card:hover.zh_why_card_top {
  transform: translateX(-40px);
}

.zh_why_card:hover.zh_why_card_bottom {
  transform: translateX(40px);
}

.zh_why_icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00A8E8, #0077B6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.zh_why_icon i {
  font-size: 32px;
  color: #fff;
}

.zh_why_card_title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.zh_why_card_desc {
  font-size: 15px;
  color: #6C757D;
  line-height: 1.7;
}

.zh_why_badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 168, 232, 0.1);
  color: #00A8E8;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.zh_why_title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.3;
}

.zh_why_desc {
  font-size: 17px;
  color: #6C757D;
  line-height: 1.8;
  margin-bottom: 35px;
}

.zh_why_stats {
  display: flex;
  gap: 40px;
}

.zh_why_stat_num {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #00A8E8, #0077B6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.zh_why_stat_text {
  font-size: 15px;
  color: #6C757D;
}

/* ========== Process Section - 垂直时间轴 ========== */
.zh_process_section {
  padding: 100px 0;
  background: #fff;
}

.zh_section_header_center {
  text-align: center;
  margin-bottom: 80px;
}

.zh_process_timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.zh_process_timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00A8E8, #0077B6);
  transform: translateX(-50%);
}

.zh_process_item {
  position: relative;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.zh_process_left {
  direction: ltr;
}

.zh_process_right {
  direction: rtl;
}

.zh_process_left > * {
  direction: ltr;
}

.zh_process_right > * {
  direction: ltr;
}

.zh_process_number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00A8E8, #0077B6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 168, 232, 0.4);
  z-index: 10;
}

.zh_process_content {
  background: #fff;
  padding: 35px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.zh_process_item:hover .zh_process_content {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 168, 232, 0.15);
}

.zh_process_title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.zh_process_desc {
  font-size: 16px;
  color: #6C757D;
  line-height: 1.7;
}

/* ========== CTA Section ========== */
.zh_cta_section {
  padding: 100px 0;
  background: #F8F9FA;
}

.zh_cta_card {
  background: linear-gradient(135deg, #00A8E8, #0077B6);
  padding: 80px 60px;
  border-radius: 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 168, 232, 0.3);
  position: relative;
  overflow: hidden;
}

.zh_cta_card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: zh_rotate 20s linear infinite;
}

@keyframes zh_rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.zh_cta_title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.zh_cta_subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 45px;
  position: relative;
  z-index: 1;
}

.zh_cta_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.zh_cta_btn_primary,
.zh_cta_btn_secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zh_cta_btn_primary {
  background: #fff;
  color: #00A8E8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.zh_cta_btn_primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.zh_cta_btn_secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid #fff;
}

.zh_cta_btn_secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
  .zh_hero_grid,
  .zh_service_grid,
  .zh_why_grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .zh_service_grid_reverse {
    direction: ltr;
  }

  .zh_hero_right {
    height: 400px;
  }

  .zh_why_card_top,
  .zh_why_card_bottom {
    transform: translateX(0);
  }

  .zh_why_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .zh_hero_title {
    font-size: 42px;
  }

  .zh_stats_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zh_projects_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zh_process_item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .zh_process_timeline::before {
    left: 30px;
  }

  .zh_process_number {
    left: 30px;
  }

  .zh_process_left,
  .zh_process_right {
    direction: ltr;
    padding-left: 100px;
  }
}

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }

  .zh_hero_section {
    padding: 80px 0 60px;
  }

  .zh_hero_title {
    font-size: 36px;
  }

  .zh_hero_features {
    flex-direction: column;
    gap: 12px;
  }

  .zh_hero_buttons {
    flex-direction: column;
    width: 100%;
  }

  .zh_hero_buttons a {
    width: 100%;
    justify-content: center;
  }

  .zh_hero_trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .zh_hero_right {
    height: 400px;
  }

  /* 浮动卡片移动端调整 */
  .zh_float_card_1 {
    bottom: -15px;
    right: 10px;
    padding: 20px 25px;
    font-size: 14px;
  }

  .zh_float_icon {
    width: 50px;
    height: 50px;
  }

  .zh_float_icon i {
    font-size: 22px;
  }

  .zh_float_number {
    font-size: 24px;
  }

  .zh_float_card_2 {
    top: 20px;
    left: 10px;
    padding: 12px 18px;
  }

  .zh_float_card_3 {
    display: none;
  }

  .zh_float_card_4 {
    top: 20px;
    right: 10px;
    padding: 10px 15px;
    font-size: 12px;
  }

  .zh_stats_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .zh_projects_grid {
    grid-template-columns: 1fr;
  }

  .zh_service_title,
  .zh_section_title,
  .zh_why_title {
    font-size: 32px;
  }

  .zh_why_cards {
    grid-template-columns: 1fr;
  }

  .zh_cta_card {
    padding: 50px 30px;
  }

  .zh_cta_title {
    font-size: 32px;
  }

  .zh_cta_buttons {
    flex-direction: column;
  }

  .zh_process_left,
  .zh_process_right {
    padding-left: 80px;
  }
}

@media (max-width: 576px) {
  .zh_hero_section {
    padding: 60px 0 50px;
  }

  .zh_hero_title {
    font-size: 28px;
  }

  .zh_hero_right {
    height: 320px;
  }

  .zh_hero_trust {
    margin-top: 20px;
  }

  .zh_hero_avatars img {
    width: 35px;
    height: 35px;
  }

  .zh_hero_avatars_more {
    width: 35px;
    height: 35px;
  }

  .zh_service_intro {
    padding: 60px 0;
  }

  .zh_projects_section {
    padding: 60px 0;
  }

  .zh_why_section {
    padding: 60px 0;
  }

  .zh_process_section {
    padding: 60px 0;
  }

  .zh_cta_section {
    padding: 60px 0;
  }
}
