body {
  background: linear-gradient(135deg, #eaf6ff 0%, #f5faff 100%);
  color: #222;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
}
.products-hero-banner {
  width: 100%;
  background: linear-gradient(90deg, #0a1a3c 0%, #00e0d6 100%);
  border-radius: 32px;
  margin: 48px 0 40px 0;
  box-shadow: 0 8px 32px rgba(0,32,64,0.13);
  display: flex;
  align-items: center;
  min-height: 180px;
}
.products-hero-content {
  padding: 48px 64px;
}
.products-hero-title {
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.products-hero-desc {
  color: #e0f7fa;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}
.products-section {
  margin-bottom: 48px;
}
.products-section-title {
  font-size: 28px;
  font-weight: 800;
  color: #0a1a3c;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.products-card-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.products-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,32,64,0.10);
  padding: 32px 24px;
  min-width: 260px;
  max-width: 340px;
  gap: 24px;
  border-left: 6px solid #00e0d6;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.products-card:hover {
  box-shadow: 0 12px 32px rgba(0,224,214,0.18);
  border-left: 8px solid #2196f3;
}
.products-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2196f3 0%, #00e0d6 100%);
  box-shadow: 0 2px 8px rgba(0,224,214,0.10);
  padding: 6px;
}
.products-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #2196f3;
  margin-bottom: 6px;
}
.products-card-desc {
  font-size: 15px;
  color: #1a237e;
}
.products-service-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.products-service-card {
  background: linear-gradient(90deg, #eaf6ff 60%, #fff 100%);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,32,64,0.08);
  padding: 28px 20px;
  min-width: 220px;
  max-width: 320px;
  flex: 1;
  border-left: 5px solid #00e0d6;
}
.products-service-title {
  font-size: 18px;
  font-weight: 700;
  color: #0a1a3c;
  margin-bottom: 8px;
}
.products-service-desc {
  font-size: 14px;
  color: #444;
}
.products-brand-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.products-brand-card {
  background: linear-gradient(90deg, #00e0d6 0%, #2196f3 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  padding: 16px 32px;
  box-shadow: 0 2px 8px rgba(0,224,214,0.10);
}
.products-client-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.products-client-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,32,64,0.08);
  padding: 24px 20px;
  min-width: 220px;
  max-width: 320px;
  flex: 1;
  border-left: 4px solid #00e0d6;
}
.products-client-quote {
  font-size: 15px;
  color: #2196f3;
  margin-bottom: 8px;
}
.products-client-name {
  font-size: 13px;
  color: #0a1a3c;
}
@media (max-width: 900px) {
  .products-hero-banner {
    min-height: 100px;
    border-radius: 16px;
    margin: 24px 0 20px 0;
  }
  .products-hero-content {
    padding: 24px 12px;
  }
  .products-hero-title {
    font-size: 24px;
  }
  .products-hero-desc {
    font-size: 13px;
  }
  .products-card-list, .products-service-list, .products-brand-list, .products-client-list {
    flex-direction: column;
    gap: 16px;
  }
  .products-card, .products-service-card, .products-client-card {
    min-width: 0;
    max-width: 100%;
    padding: 14px 8px;
    border-radius: 8px;
  }
  .products-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    padding: 2px;
  }
} 