    /* 品牌价值内容版块 */
    .brand-value-section {
      padding: 80px 0;
      background-color: white;
    }
    
    .brand-value-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .value-item {
      margin-bottom: 80px;
      padding: 40px;
      background-color: var(--gray-light);
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .value-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .value-item:last-child {
      margin-bottom: 0;
    }
    
    .value-header {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
    }
    
    .value-icon {
      width: 70px;
      height: 70px;
      background-color: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 25px;
      flex-shrink: 0;
      font-size: 1.8rem;
    }
    
    .value-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin: 0;
    }
    
    .value-content {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
    }
    
    .value-content p {
      margin-bottom: 20px;
    }
    
    .value-content p:last-child {
      margin-bottom: 0;
    }
    
    .highlight-box {
      background-color: rgba(77, 166, 255, 0.1);
      border-left: 4px solid var(--primary-color);
      padding: 20px;
      margin-top: 25px;
      border-radius: 0 6px 6px 0;
    }
    
    .highlight-box p {
      margin-bottom: 0;
      font-weight: 500;
      color: var(--primary-dark);
    }
    
   
    /* 响应式调整 */
    
    @media (max-width: 768px) {
      .value-title {
        font-size: 1.5rem;
      }
      
      .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }
    }
    
    @media (max-width: 576px) {
      .value-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      
      .value-icon {
        margin-right: 0;
        margin-bottom: 15px;
      }
      
      .value-item {
        padding: 25px 20px;
      }
    }