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

body {
  font-family: PingFangSC-Regular, Arial, sans-serif;
  background: #fff;
  min-height: 100vh;
  color: #000;
  line-height: 1.6;
}

.container {
  min-width: 1155px;
  margin: 0 auto;
}

.header {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  width: 1155px;
}

.header h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 15px;
  font-weight: 500;
}

.subtitle {
  font-size: 18px;
  color: #000;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.65;
}

.contentBox {
  display: flex;
  margin: 0 auto;
  margin-bottom: 60px;
  width: 1155px;
}

.component1 {
    width: 100vw;
    background: #F2FCFD;
    padding: 80px 0;
}

.component1-content{
  width: 1155px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.left{
  flex: 1;
  padding-right: 40px;
}

.main-title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  margin-bottom: 26px;
}

.description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 50px;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.btn-primary {
  background: #00BEBE;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 400;
  width: 121px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid #00BEBE;
}

.btn-primary:hover {
  background: #fff;
    color: #15b3b4;
    border: 1px solid #15b3b4;
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #00BEBE;
  border: 1px solid #00BEBE;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 400;
  width: 121px;
  height: 42px;
  line-height: 42px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #00BEBE;
  color: white;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-item {
  width: 48px;
  height: 48px;
  background: #e0e0e0;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -20px;
  overflow: hidden;
}
.logo-item img {
   width: 48px;
  height: 48px;
}

.trust-text {
  font-size: 18px;
  color: #999;
  margin-left: 15px;
}

.right{
  width: 575px;
  height: 323px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.right video {
  border-radius: 12px;
}