* {
  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;
}

.component2 .pain-points {
    flex: 1;
  }

.component2 .pain-point {
    display: flex;
    margin-bottom: 38px;
  }
.component2 .iconbox {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    /* background: #f2fcfd; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
.component2 .iconbox img {
    width: 48px;
    height: 48px;
  }
.component2 .textbox {
    flex: 1;
  }

.component2 .pain-point h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 6px;
    font-weight: 500;
  }

.component2 .pain-point p {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
  }

.component2 .statistics {
    width: 575px;
    margin-left: 55px;
    background: #f2fcfd;
    padding: 30px 35px;
    height: fit-content;
  }

.component2 .stat-row {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
  }

.component2 .stat-item {
    width: 244px;
    background: #ffffff;
    border-radius: 3px;
    position: relative;
    padding: 12px 12px 15px;
    box-sizing: border-box;
  }
.component2 .statistics-image {
    width: 505px;
    height: 313px;
  }
.component2 .statistics-image img {
    width: 100%;
    height: 100%;
  }
.component2 .percentage {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
  }

.component2 .label {
    width: 112px;
    height: 24px;
    padding: 0 10px;
    background: #fff7e3;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    color: #df8300;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

.component2 .category {
    font-weight: 400;
    font-size: 14px;
    color: #000000a6;
    line-height: 28px;
  }

.component2 .cta {
    text-align: left;
  }

.component2 .cta-button {
    background: #15b3b4;
    color: white;
    border: none;
    width: 140px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease-in;
  }

.component2 .cta-button:hover {
    background: #fff;
    transform: translateY(-2px);
    color: #15b3b4;
    border: 1px solid #15b3b4;
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
  }
